]> git.itanic.dy.fi Git - linux-stable/commitdiff
BRIDGE: Section fix.
authorAndrew Morton <akpm@linux-foundation.org>
Thu, 6 Dec 2007 05:35:23 +0000 (21:35 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Sat, 15 Dec 2007 03:44:40 +0000 (19:44 -0800)
WARNING: vmlinux.o(.init.text+0x204e2): Section mismatch: reference to .exit.text:br_fdb_fini (between 'br_init' and 'br_fdb_init')

Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/bridge/br_fdb.c

index eb57502bb2641b7087b50a8c2577699f3b3ab388..bc40377136a2631a19d73372a24f15f2ce010222 100644 (file)
@@ -44,7 +44,7 @@ int __init br_fdb_init(void)
        return 0;
 }
 
-void __exit br_fdb_fini(void)
+void br_fdb_fini(void)
 {
        kmem_cache_destroy(br_fdb_cache);
 }