netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] WAN: DSCC4 driver requires generic HDLC
@ 2006-11-13 18:48 Krzysztof Halasa
  2006-11-13 19:25 ` Francois Romieu
  2006-11-14 15:41 ` Jeff Garzik
  0 siblings, 2 replies; 3+ messages in thread
From: Krzysztof Halasa @ 2006-11-13 18:48 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: linux-kernel, netdev, Francois Romieu

Another thing, reported recently to me by several people - DSCC4 WAN
driver now (and perhaps for the last couple of years+) requires the
generic HDLC. I've fixed the Kconfig and moved the DSCC4 option
under CONFIG_HDLC so it's consistent visually.

Jeff, Francois, I think it's safe to apply. Thanks.

Signed-off-by: Krzysztof Halasa <khc@pm.waw.pl>

diff --git a/drivers/net/wan/Kconfig b/drivers/net/wan/Kconfig
index b5d0d7f..d5ab9cf 100644
--- a/drivers/net/wan/Kconfig
+++ b/drivers/net/wan/Kconfig
@@ -57,44 +57,6 @@ config COSA
 	  The driver will be compiled as a module: the
 	  module will be called cosa.
 
-config DSCC4
-	tristate "Etinc PCISYNC serial board support"
-	depends on WAN && PCI && m
-	help
-	  Driver for Etinc PCISYNC boards based on the Infineon (ex. Siemens)
-	  DSCC4 chipset.
-
-	  This is supposed to work with the four port card. Take a look at
-	  <http://www.cogenit.fr/dscc4/> for further information about the
-	  driver.
-
-	  To compile this driver as a module, choose M here: the
-	  module will be called dscc4.
-
-config DSCC4_PCISYNC
-	bool "Etinc PCISYNC features"
-	depends on DSCC4
-	help
-	  Due to Etinc's design choice for its PCISYNC cards, some operations
-	  are only allowed on specific ports of the DSCC4. This option is the
-	  only way for the driver to know that it shouldn't return a success
-	  code for these operations.
-
-	  Please say Y if your card is an Etinc's PCISYNC.
-
-config DSCC4_PCI_RST
-	bool "Hard reset support"
-	depends on DSCC4
-	help
-	  Various DSCC4 bugs forbid any reliable software reset of the ASIC.
-	  As a replacement, some vendors provide a way to assert the PCI #RST
-	  pin of DSCC4 through the GPIO port of the card. If you choose Y,
-	  the driver will make use of this feature before module removal
-	  (i.e. rmmod). The feature is known to be available on Commtech's
-	  cards. Contact your manufacturer for details.
-
-	  Say Y if your card supports this feature.
-
 #
 # Lan Media's board. Currently 1000, 1200, 5200, 5245
 #
@@ -323,6 +285,44 @@ config FARSYNC
 	  To compile this driver as a module, choose M here: the
 	  module will be called farsync.
 
+config DSCC4
+	tristate "Etinc PCISYNC serial board support"
+	depends on HDLC && PCI && m
+	help
+	  Driver for Etinc PCISYNC boards based on the Infineon (ex. Siemens)
+	  DSCC4 chipset.
+
+	  This is supposed to work with the four port card. Take a look at
+	  <http://www.cogenit.fr/dscc4/> for further information about the
+	  driver.
+
+	  To compile this driver as a module, choose M here: the
+	  module will be called dscc4.
+
+config DSCC4_PCISYNC
+	bool "Etinc PCISYNC features"
+	depends on DSCC4
+	help
+	  Due to Etinc's design choice for its PCISYNC cards, some operations
+	  are only allowed on specific ports of the DSCC4. This option is the
+	  only way for the driver to know that it shouldn't return a success
+	  code for these operations.
+
+	  Please say Y if your card is an Etinc's PCISYNC.
+
+config DSCC4_PCI_RST
+	bool "Hard reset support"
+	depends on DSCC4
+	help
+	  Various DSCC4 bugs forbid any reliable software reset of the ASIC.
+	  As a replacement, some vendors provide a way to assert the PCI #RST
+	  pin of DSCC4 through the GPIO port of the card. If you choose Y,
+	  the driver will make use of this feature before module removal
+	  (i.e. rmmod). The feature is known to be available on Commtech's
+	  cards. Contact your manufacturer for details.
+
+	  Say Y if your card supports this feature.
+
 config DLCI
 	tristate "Frame Relay DLCI support"
 	depends on WAN

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

* Re: [PATCH] WAN: DSCC4 driver requires generic HDLC
  2006-11-13 18:48 [PATCH] WAN: DSCC4 driver requires generic HDLC Krzysztof Halasa
@ 2006-11-13 19:25 ` Francois Romieu
  2006-11-14 15:41 ` Jeff Garzik
  1 sibling, 0 replies; 3+ messages in thread
From: Francois Romieu @ 2006-11-13 19:25 UTC (permalink / raw)
  To: Krzysztof Halasa; +Cc: Jeff Garzik, linux-kernel, netdev

Krzysztof Halasa <khc@pm.waw.pl> :
[...]
> Signed-off-by: Krzysztof Halasa <khc@pm.waw.pl>

Acked-by: Francois Romieu <romieu@fr.zoreil.com>

Let's improve the user-friendliness of hdlc...

-- 
Ueimor

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

* Re: [PATCH] WAN: DSCC4 driver requires generic HDLC
  2006-11-13 18:48 [PATCH] WAN: DSCC4 driver requires generic HDLC Krzysztof Halasa
  2006-11-13 19:25 ` Francois Romieu
@ 2006-11-14 15:41 ` Jeff Garzik
  1 sibling, 0 replies; 3+ messages in thread
From: Jeff Garzik @ 2006-11-14 15:41 UTC (permalink / raw)
  To: Krzysztof Halasa; +Cc: linux-kernel, netdev, Francois Romieu

Krzysztof Halasa wrote:
> Another thing, reported recently to me by several people - DSCC4 WAN
> driver now (and perhaps for the last couple of years+) requires the
> generic HDLC. I've fixed the Kconfig and moved the DSCC4 option
> under CONFIG_HDLC so it's consistent visually.
> 
> Jeff, Francois, I think it's safe to apply. Thanks.
> 
> Signed-off-by: Krzysztof Halasa <khc@pm.waw.pl>

applied



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

end of thread, other threads:[~2006-11-14 15:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-13 18:48 [PATCH] WAN: DSCC4 driver requires generic HDLC Krzysztof Halasa
2006-11-13 19:25 ` Francois Romieu
2006-11-14 15:41 ` Jeff Garzik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).