diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2007-12-05 21:35:23 -0800 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-12-07 01:05:53 -0800 |
commit | 73afc9069289bdb77cf0c81cb9775dcb63894bbe (patch) | |
tree | d4ef2100819a28fe0af9e7d0652481f578ccbe0b /net/bridge | |
parent | 0c3b091b9a7a5184011e75afa7f0206d288ddb06 (diff) | |
download | linux-3.10-73afc9069289bdb77cf0c81cb9775dcb63894bbe.tar.gz linux-3.10-73afc9069289bdb77cf0c81cb9775dcb63894bbe.tar.bz2 linux-3.10-73afc9069289bdb77cf0c81cb9775dcb63894bbe.zip |
[BRIDGE]: Section fix.
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>
Diffstat (limited to 'net/bridge')
-rw-r--r-- | net/bridge/br_fdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_fdb.c b/net/bridge/br_fdb.c index eb57502bb26..bc40377136a 100644 --- a/net/bridge/br_fdb.c +++ b/net/bridge/br_fdb.c @@ -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); } |