Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

slhc: Don't export symbols twice

Don't export symbols twice.

Signed-off-by: Denis Kirjanov <dkirjanov@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Denis Kirjanov and committed by
David S. Miller
7f8a688e 1c557819

+4 -11
+4 -11
drivers/net/slhc.c
··· 688 688 return 0; 689 689 } 690 690 691 - 692 - /* VJ header compression */ 693 - EXPORT_SYMBOL(slhc_init); 694 - EXPORT_SYMBOL(slhc_free); 695 - EXPORT_SYMBOL(slhc_remember); 696 - EXPORT_SYMBOL(slhc_compress); 697 - EXPORT_SYMBOL(slhc_uncompress); 698 - EXPORT_SYMBOL(slhc_toss); 699 - 700 691 #else /* CONFIG_INET */ 701 - 702 692 703 693 int 704 694 slhc_toss(struct slcompress *comp) ··· 728 738 printk(KERN_DEBUG "Called IP function on non IP-system: slhc_init"); 729 739 return NULL; 730 740 } 741 + 742 + #endif /* CONFIG_INET */ 743 + 744 + /* VJ header compression */ 731 745 EXPORT_SYMBOL(slhc_init); 732 746 EXPORT_SYMBOL(slhc_free); 733 747 EXPORT_SYMBOL(slhc_remember); ··· 739 745 EXPORT_SYMBOL(slhc_uncompress); 740 746 EXPORT_SYMBOL(slhc_toss); 741 747 742 - #endif /* CONFIG_INET */ 743 748 MODULE_LICENSE("Dual BSD/GPL");