Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=16e543ffa853c8e1de5e1e2bcec0ef9f0b9386fa
Commit:     16e543ffa853c8e1de5e1e2bcec0ef9f0b9386fa
Parent:     cf8918fe55018aba24669ba76fab3203627890e4
Author:     Adrian Bunk <[EMAIL PROTECTED]>
AuthorDate: Thu Feb 14 08:30:55 2008 +1100
Committer:  Paul Mackerras <[EMAIL PROTECTED]>
CommitDate: Thu Feb 14 22:11:02 2008 +1100

    [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 <[EMAIL PROTECTED]>
    Acked-by: Stephen Rothwell <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mackerras <[EMAIL PROTECTED]>
---
 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 be06cfd..657b72f 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);
 }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to