From 0b687f1b5b66feeaeeb4629927d30ddf44ecda62 Mon Sep 17 00:00:00 2001 From: stephen hemminger Date: Wed, 18 Jul 2012 09:09:48 +0000 Subject: [PATCH] --- yaml --- r: 315501 b: refs/heads/master c: 83bd1b793e1e6b68be4f7b18752de9620137dfa2 h: refs/heads/master i: 315499: 7b4ed47aa3bfd4a4ee1ea5871efb3b1fc8769ea5 v: v3 --- [refs] | 2 +- trunk/net/ethernet/Makefile | 2 -- trunk/net/ipx/Makefile | 2 +- trunk/net/{ethernet => ipx}/pe2.c | 2 -- 4 files changed, 2 insertions(+), 6 deletions(-) rename trunk/net/{ethernet => ipx}/pe2.c (91%) diff --git a/[refs] b/[refs] index 409f9e28d163..dac0544b3bf0 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: d8f1641b5829629d3af8e52750ba3b542f8f56c8 +refs/heads/master: 83bd1b793e1e6b68be4f7b18752de9620137dfa2 diff --git a/trunk/net/ethernet/Makefile b/trunk/net/ethernet/Makefile index 7cef1d8ace27..323177505404 100644 --- a/trunk/net/ethernet/Makefile +++ b/trunk/net/ethernet/Makefile @@ -3,5 +3,3 @@ # obj-y += eth.o -obj-$(subst m,y,$(CONFIG_IPX)) += pe2.o -obj-$(subst m,y,$(CONFIG_ATALK)) += pe2.o diff --git a/trunk/net/ipx/Makefile b/trunk/net/ipx/Makefile index 4b95e3ea0f8b..440fafa9fd07 100644 --- a/trunk/net/ipx/Makefile +++ b/trunk/net/ipx/Makefile @@ -4,5 +4,5 @@ obj-$(CONFIG_IPX) += ipx.o -ipx-y := af_ipx.o ipx_route.o ipx_proc.o +ipx-y := af_ipx.o ipx_route.o ipx_proc.o pe2.o ipx-$(CONFIG_SYSCTL) += sysctl_net_ipx.o diff --git a/trunk/net/ethernet/pe2.c b/trunk/net/ipx/pe2.c similarity index 91% rename from trunk/net/ethernet/pe2.c rename to trunk/net/ipx/pe2.c index 85d574addbc1..32dcd601ab32 100644 --- a/trunk/net/ethernet/pe2.c +++ b/trunk/net/ipx/pe2.c @@ -28,10 +28,8 @@ struct datalink_proto *make_EII_client(void) return proto; } -EXPORT_SYMBOL(make_EII_client); void destroy_EII_client(struct datalink_proto *dl) { kfree(dl); } -EXPORT_SYMBOL(destroy_EII_client);