mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
7c45ad16f0
Some functions are exported twice in current code - remove the excess export. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Cc: Jeff Dike <jdike@addtoit.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
18 lines
430 B
C
18 lines
430 B
C
#include "linux/module.h"
|
|
#include "linux/in6.h"
|
|
#include "linux/rwsem.h"
|
|
#include "asm/byteorder.h"
|
|
#include "asm/delay.h"
|
|
#include "asm/semaphore.h"
|
|
#include "asm/uaccess.h"
|
|
#include "asm/checksum.h"
|
|
#include "asm/errno.h"
|
|
|
|
EXPORT_SYMBOL(__down_failed);
|
|
EXPORT_SYMBOL(__down_failed_interruptible);
|
|
EXPORT_SYMBOL(__down_failed_trylock);
|
|
EXPORT_SYMBOL(__up_wakeup);
|
|
|
|
/* Networking helper routines. */
|
|
EXPORT_SYMBOL(csum_partial);
|