public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] remove dead entry in net wan Kconfig
@ 2006-05-12 15:08 Paul Fulghum
  2006-05-16 16:00 ` Adrian Bunk
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Fulghum @ 2006-05-12 15:08 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Linux Kernel Mailing List

Remove dead entry from net wan Kconfig.
This entry is left over from 2.4 where synclink
used syncppp driver directly. synclink drivers
now use generic HDLC

Signed-off-by: Paul Fulghum <paulkf@microgate.com>

--- linux-2.6.16/drivers/net/wan/Kconfig	2006-03-19 23:53:29.000000000 -0600
+++ b/drivers/net/wan/Kconfig	2006-05-12 09:17:03.000000000 -0500
@@ -134,18 +134,6 @@
 	  The driver will be compiled as a module: the
 	  module will be called sealevel.
 
-config SYNCLINK_SYNCPPP
-	tristate "SyncLink HDLC/SYNCPPP support"
-	depends on WAN
-	help
-	  Enables HDLC/SYNCPPP support for the SyncLink WAN driver.
-
-	  Normally the SyncLink WAN driver works with the main PPP driver
-	  <file:drivers/net/ppp_generic.c> and pppd program.
-	  HDLC/SYNCPPP support allows use of the Cisco HDLC/PPP driver
-	  <file:drivers/net/wan/syncppp.c>. The SyncLink WAN driver (in
-	  character devices) must also be enabled.
-
 # Generic HDLC
 config HDLC
 	tristate "Generic HDLC layer"



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] remove dead entry in net wan Kconfig
  2006-05-12 15:08 [PATCH] remove dead entry in net wan Kconfig Paul Fulghum
@ 2006-05-16 16:00 ` Adrian Bunk
  2006-05-16 16:39   ` Paul Fulghum
  0 siblings, 1 reply; 4+ messages in thread
From: Adrian Bunk @ 2006-05-16 16:00 UTC (permalink / raw)
  To: Paul Fulghum; +Cc: Andrew Morton, Linux Kernel Mailing List

On Fri, May 12, 2006 at 10:08:14AM -0500, Paul Fulghum wrote:

> Remove dead entry from net wan Kconfig.
> This entry is left over from 2.4 where synclink
> used syncppp driver directly. synclink drivers
> now use generic HDLC


What about also removing the entry for this option in the Makefile?


> Signed-off-by: Paul Fulghum <paulkf@microgate.com>
> 
> --- linux-2.6.16/drivers/net/wan/Kconfig	2006-03-19 23:53:29.000000000 -0600
> +++ b/drivers/net/wan/Kconfig	2006-05-12 09:17:03.000000000 -0500
> @@ -134,18 +134,6 @@
>  	  The driver will be compiled as a module: the
>  	  module will be called sealevel.
>  
> -config SYNCLINK_SYNCPPP
> -	tristate "SyncLink HDLC/SYNCPPP support"
> -	depends on WAN
> -	help
> -	  Enables HDLC/SYNCPPP support for the SyncLink WAN driver.
> -
> -	  Normally the SyncLink WAN driver works with the main PPP driver
> -	  <file:drivers/net/ppp_generic.c> and pppd program.
> -	  HDLC/SYNCPPP support allows use of the Cisco HDLC/PPP driver
> -	  <file:drivers/net/wan/syncppp.c>. The SyncLink WAN driver (in
> -	  character devices) must also be enabled.
> -
>  # Generic HDLC
>  config HDLC
>  	tristate "Generic HDLC layer"

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] remove dead entry in net wan Kconfig
  2006-05-16 16:00 ` Adrian Bunk
@ 2006-05-16 16:39   ` Paul Fulghum
  2006-05-16 18:18     ` [PATCH] remove dead entry in net wan Makefile Paul Fulghum
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Fulghum @ 2006-05-16 16:39 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: Andrew Morton, Linux Kernel Mailing List

Adrian Bunk wrote:
> What about also removing the entry for this option in the Makefile?

Good point, I'll do that.

-- 
Paul Fulghum
Microgate Systems, Ltd.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] remove dead entry in net wan Makefile
  2006-05-16 16:39   ` Paul Fulghum
@ 2006-05-16 18:18     ` Paul Fulghum
  0 siblings, 0 replies; 4+ messages in thread
From: Paul Fulghum @ 2006-05-16 18:18 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: Andrew Morton, Linux Kernel Mailing List

Remove dead entry in net wan Makefile.
Entry is left over from 2.4 when synclink used syncppp.
synclink drivers now use generic HDLC

Signed-off-by: Paul Fulghum <paulkf@microgate.com>

--- linux-2.6.16/drivers/net/wan/Makefile	2006-03-19 23:53:29.000000000 -0600
+++ b/drivers/net/wan/Makefile	2006-05-16 13:13:36.000000000 -0500
@@ -36,7 +36,6 @@
 obj-$(CONFIG_FARSYNC)		+=		syncppp.o	farsync.o
 obj-$(CONFIG_DSCC4)             +=				dscc4.o
 obj-$(CONFIG_LANMEDIA)		+=		syncppp.o
-obj-$(CONFIG_SYNCLINK_SYNCPPP)	+=		syncppp.o
 obj-$(CONFIG_X25_ASY)		+= x25_asy.o
 
 obj-$(CONFIG_LANMEDIA)		+= lmc/



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-05-16 18:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-12 15:08 [PATCH] remove dead entry in net wan Kconfig Paul Fulghum
2006-05-16 16:00 ` Adrian Bunk
2006-05-16 16:39   ` Paul Fulghum
2006-05-16 18:18     ` [PATCH] remove dead entry in net wan Makefile Paul Fulghum

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox