diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-02-14 08:30:55 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-02-14 22:11:02 +1100 |
commit | 16e543ffa853c8e1de5e1e2bcec0ef9f0b9386fa (patch) | |
tree | 058cc944a412d9d6d593b463ae8ca6dbc17629e1 /arch | |
parent | cf8918fe55018aba24669ba76fab3203627890e4 (diff) | |
download | linux-3.10-16e543ffa853c8e1de5e1e2bcec0ef9f0b9386fa.tar.gz linux-3.10-16e543ffa853c8e1de5e1e2bcec0ef9f0b9386fa.tar.bz2 linux-3.10-16e543ffa853c8e1de5e1e2bcec0ef9f0b9386fa.zip |
[POWERPC] free_property() must not be __init
This fixes the following section mismatch:
<-- snip -->
...
WARNING: vmlinux.o(.text+0x55648): Section mismatch in reference from the function .free_node() to the function .init.text:.free_property()
...
<-- snip -->
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/iseries/vio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/iseries/vio.c b/arch/powerpc/platforms/iseries/vio.c index be06cfd9fa3..657b72f6849 100644 --- a/arch/powerpc/platforms/iseries/vio.c +++ b/arch/powerpc/platforms/iseries/vio.c @@ -75,7 +75,7 @@ static struct property *new_property(const char *name, int length, return np; } -static void __init free_property(struct property *np) +static void free_property(struct property *np) { kfree(np); } |