Skip to content

Commit 553bc08

Browse files
JuliaLawalldavem330
authored andcommitted
arcnet: com90xx: add __init attribute
Add __init attribute on a function that is only called from other __init functions and that is not inlined, at least with gcc version 4.8.4 on an x86 machine with allyesconfig. Currently, the function is put in the .text.unlikely segment. Declaring it as __init will cause it to be put in the .init.text and to disappear after initialization. The result of objdump -x on the function before the change is as follows: 0000000000000000 l F .text.unlikely 00000000000000bf check_mirror And after the change it is as follows: 0000000000000000 l F .init.text 00000000000000ba check_mirror Done with the help of Coccinelle. The semantic patch checks for local static non-init functions that are called from an __init function and are not called from any other function. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Acked-by: Michael Grzeschik <mgr@pengutronix.de> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 5df1f77 commit 553bc08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/arcnet/com90xx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ static void __init com90xx_probe(void)
433433
kfree(iomem);
434434
}
435435

436-
static int check_mirror(unsigned long addr, size_t size)
436+
static int __init check_mirror(unsigned long addr, size_t size)
437437
{
438438
void __iomem *p;
439439
int res = -1;

0 commit comments

Comments
 (0)