[xtensa-cvscommit] linux/arch/xtensa/kernel xtensa_ksyms.c,1.2,1.3
Brought to you by:
zankel
|
From: <jgr...@us...> - 2002-12-12 22:54:46
|
Update of /cvsroot/xtensa/linux/arch/xtensa/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv16705/arch/xtensa/kernel Modified Files: xtensa_ksyms.c Log Message: Fix undefined symbols for IPV6 module. Index: xtensa_ksyms.c =================================================================== RCS file: /cvsroot/xtensa/linux/arch/xtensa/kernel/xtensa_ksyms.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** xtensa_ksyms.c 19 Oct 2002 04:39:53 -0000 1.2 --- xtensa_ksyms.c 12 Dec 2002 22:54:43 -0000 1.3 *************** *** 32,35 **** --- 32,38 ---- #include <asm/floppy.h> #endif + #ifdef CONFIG_NET + #include <net/checksum.h> + #endif /* CONFIG_NET */ *************** *** 86,89 **** --- 89,99 ---- EXPORT_SYMBOL(__down_trylock); EXPORT_SYMBOL(__up); + + #ifdef CONFIG_NET + /* + * Networking support + */ + EXPORT_SYMBOL(csum_partial_copy_generic); + #endif /* CONFIG_NET */ /* |