]> git.karo-electronics.de Git - linux-beck.git/commitdiff
l2tp: Relocate pppol2tp driver to new net/l2tp directory
authorJames Chapman <jchapman@katalix.com>
Fri, 2 Apr 2010 06:18:28 +0000 (06:18 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sat, 3 Apr 2010 21:56:01 +0000 (14:56 -0700)
This patch moves the existing pppol2tp driver from drivers/net into a
new net/l2tp directory, which is where the upcoming L2TPv3 code will
live. The existing CONFIG_PPPOL2TP config option is left in its
current place to avoid "make oldconfig" issues when an existing
pppol2tp user takes this change. (This is the same approach used for
the pppoatm driver, which moved to net/atm.)

There are no code changes. The existing drivers/net/pppol2tp.c is
simply moved to net/l2tp.

Signed-off-by: James Chapman <jchapman@katalix.com>
Reviewed-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/Makefile
net/Makefile
net/l2tp/Makefile [new file with mode: 0644]
net/l2tp/pppol2tp.c [moved from drivers/net/pppol2tp.c with 100% similarity]

index ba06c1c0db8b64508c015a3cd99b3e389c0e63b3..f8444f439a659332de1a3e6725beae2072643711 100644 (file)
@@ -160,7 +160,7 @@ obj-$(CONFIG_PPP_DEFLATE) += ppp_deflate.o
 obj-$(CONFIG_PPP_BSDCOMP) += bsd_comp.o
 obj-$(CONFIG_PPP_MPPE) += ppp_mppe.o
 obj-$(CONFIG_PPPOE) += pppox.o pppoe.o
-obj-$(CONFIG_PPPOL2TP) += pppox.o pppol2tp.o
+obj-$(CONFIG_PPPOL2TP) += pppox.o
 
 obj-$(CONFIG_SLIP) += slip.o
 obj-$(CONFIG_SLHC) += slhc.o
index a5eae27aa42d95f3d47d560045a1bf4dd88c261c..13ca77e0eb083a74cbc8c9deeb9947a2c4846500 100644 (file)
@@ -40,6 +40,7 @@ obj-$(CONFIG_BT)              += bluetooth/
 obj-$(CONFIG_SUNRPC)           += sunrpc/
 obj-$(CONFIG_AF_RXRPC)         += rxrpc/
 obj-$(CONFIG_ATM)              += atm/
+obj-$(CONFIG_PPPOL2TP)         += l2tp/
 obj-$(CONFIG_DECNET)           += decnet/
 obj-$(CONFIG_ECONET)           += econet/
 obj-$(CONFIG_PHONET)           += phonet/
diff --git a/net/l2tp/Makefile b/net/l2tp/Makefile
new file mode 100644 (file)
index 0000000..9af41e8
--- /dev/null
@@ -0,0 +1,5 @@
+#
+# Makefile for the L2TP.
+#
+
+obj-$(CONFIG_PPPOL2TP) += pppol2tp.o
similarity index 100%
rename from drivers/net/pppol2tp.c
rename to net/l2tp/pppol2tp.c