mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/3] staging/otus: Add select WEXT_PRIV to Kconfig to prevent build failure
@ 2010-01-07 20:33 Peter Huewe
  2010-01-07 20:35 ` [PATCH 2/3] staging/rtl8192u: " Peter Huewe
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Peter Huewe @ 2010-01-07 20:33 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: devel, linux-kernel

From: Peter Huewe <peterhuewe@gmx.de>
Date: Thu, 7 Jan 2010 21:13:55 +0100

Without WEXT_PRIV set the driver fails to build due to unknown fields in
the iw_handler_def struct.
Those fields are enclosed in WEXT_PRIV conditionals in the prototype
of iw_handler_def in include/net/iw_handler.h

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
---
Patch against Linux-next of Do 7. Jan 19:59:41 CET 2010

drivers/staging/otus/Kconfig |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/staging/otus/Kconfig b/drivers/staging/otus/Kconfig
index f6cc262..409e01c 100644
--- a/drivers/staging/otus/Kconfig
+++ b/drivers/staging/otus/Kconfig
@@ -1,6 +1,8 @@
 config OTUS
 	tristate "Atheros OTUS 802.11n USB wireless support"
 	depends on USB && WLAN && MAC80211
+    select WIRELESS_EXT
+    select WEXT_PRIV
 	default N
 	---help---
 	  Enable support for Atheros 802.11n USB hardware:
-- 
1.6.4.4


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

* [PATCH 2/3] staging/rtl8192u: Add select WEXT_PRIV to Kconfig to prevent build failure
  2010-01-07 20:33 [PATCH 1/3] staging/otus: Add select WEXT_PRIV to Kconfig to prevent build failure Peter Huewe
@ 2010-01-07 20:35 ` Peter Huewe
  2010-01-07 20:36   ` [PATCH 3/3] staging/wlan-ng: " Peter Huewe
  2010-01-08  8:14   ` [PATCH 2/3 v2] staging/rtl8192u: " Peter Hüwe
  2010-01-08  0:37 ` [PATCH 1/3] staging/otus: " Simon Horman
  2010-01-08  8:13 ` [PATCH 1/3 v2] " Peter Hüwe
  2 siblings, 2 replies; 10+ messages in thread
From: Peter Huewe @ 2010-01-07 20:35 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: devel, linux-kernel, Mauro Carvalho Chehab, Randy Dunlap

From: Peter Huewe <peterhuewe@gmx.de>
Date: Thu, 7 Jan 2010 21:19:11 +0100

Without WEXT_PRIV set the driver fails to build due to unknown fields in
the iw_handler_def struct.
Those fields are enclosed in WEXT_PRIV conditionals in the prototype
of iw_handler_def in include/net/iw_handler.h


Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
---
Patch against Linux-next of Do 7. Jan 19:59:41 CET 2010

 drivers/staging/rtl8192u/Kconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/staging/rtl8192u/Kconfig b/drivers/staging/rtl8192u/Kconfig
index 9913ab8..8e5eb92 100644
--- a/drivers/staging/rtl8192u/Kconfig
+++ b/drivers/staging/rtl8192u/Kconfig
@@ -2,5 +2,6 @@ config RTL8192U
 	tristate "RealTek RTL8192U Wireless LAN NIC driver"
 	depends on PCI && WLAN && USB
 	depends on WIRELESS_EXT
+    select WEXT_PRIV
 	default N
 	---help---
-- 
1.6.4.4



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

* [PATCH 3/3] staging/wlan-ng: Add select WEXT_PRIV to Kconfig to prevent build failure
  2010-01-07 20:35 ` [PATCH 2/3] staging/rtl8192u: " Peter Huewe
@ 2010-01-07 20:36   ` Peter Huewe
  2010-01-08  0:35     ` Simon Horman
  2010-01-08  8:14   ` [PATCH 2/3 v2] staging/rtl8192u: " Peter Hüwe
  1 sibling, 1 reply; 10+ messages in thread
From: Peter Huewe @ 2010-01-07 20:36 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Simon Horman; +Cc: devel, linux-kernel

From: Peter Huewe <peterhuewe@gmx.de>
Date: Thu, 7 Jan 2010 21:21:35 +0100

Without WEXT_PRIV set the p80211wext.c fails to build due to unknown fields in
the iw_handler_def struct.
Those fields are enclosed in WEXT_PRIV conditionals in the prototype
of iw_handler_def in include/net/iw_handler.h

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
---
Patch against Linux-next of Do 7. Jan 19:59:41 CET 2010
 drivers/staging/wlan-ng/Kconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/staging/wlan-ng/Kconfig b/drivers/staging/wlan-ng/Kconfig
index 704ebd2..82fcc16 100644
--- a/drivers/staging/wlan-ng/Kconfig
+++ b/drivers/staging/wlan-ng/Kconfig
@@ -2,6 +2,7 @@ config PRISM2_USB
 	tristate "Prism2.5/3 USB driver"
 	depends on WLAN && USB
 	select WIRELESS_EXT
+	select WEXT_PRIV
 	default n
 	---help---
 	  This is the wlan-ng prism 2.5/3 USB driver for a wide range of
-- 
1.6.4.4




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

* Re: [PATCH 3/3] staging/wlan-ng: Add select WEXT_PRIV to Kconfig to prevent build failure
  2010-01-07 20:36   ` [PATCH 3/3] staging/wlan-ng: " Peter Huewe
@ 2010-01-08  0:35     ` Simon Horman
  0 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2010-01-08  0:35 UTC (permalink / raw)
  To: Peter Huewe; +Cc: Greg Kroah-Hartman, devel, linux-kernel

On Thu, Jan 07, 2010 at 09:36:38PM +0100, Peter Huewe wrote:
> From: Peter Huewe <peterhuewe@gmx.de>
> Date: Thu, 7 Jan 2010 21:21:35 +0100
> 
> Without WEXT_PRIV set the p80211wext.c fails to build due to unknown fields in
> the iw_handler_def struct.
> Those fields are enclosed in WEXT_PRIV conditionals in the prototype
> of iw_handler_def in include/net/iw_handler.h
> 
> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>

Looks good to me.

Acked-by: Simon Horman <horms@verge.net.au>

> ---
> Patch against Linux-next of Do 7. Jan 19:59:41 CET 2010
>  drivers/staging/wlan-ng/Kconfig |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/staging/wlan-ng/Kconfig b/drivers/staging/wlan-ng/Kconfig
> index 704ebd2..82fcc16 100644
> --- a/drivers/staging/wlan-ng/Kconfig
> +++ b/drivers/staging/wlan-ng/Kconfig
> @@ -2,6 +2,7 @@ config PRISM2_USB
>  	tristate "Prism2.5/3 USB driver"
>  	depends on WLAN && USB
>  	select WIRELESS_EXT
> +	select WEXT_PRIV
>  	default n
>  	---help---
>  	  This is the wlan-ng prism 2.5/3 USB driver for a wide range of
> -- 
> 1.6.4.4
> 
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH 1/3] staging/otus: Add select WEXT_PRIV to Kconfig to prevent build failure
  2010-01-07 20:33 [PATCH 1/3] staging/otus: Add select WEXT_PRIV to Kconfig to prevent build failure Peter Huewe
  2010-01-07 20:35 ` [PATCH 2/3] staging/rtl8192u: " Peter Huewe
@ 2010-01-08  0:37 ` Simon Horman
  2010-01-08  8:13 ` [PATCH 1/3 v2] " Peter Hüwe
  2 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2010-01-08  0:37 UTC (permalink / raw)
  To: Peter Huewe; +Cc: Greg Kroah-Hartman, devel, linux-kernel

On Thu, Jan 07, 2010 at 09:33:20PM +0100, Peter Huewe wrote:
> From: Peter Huewe <peterhuewe@gmx.de>
> Date: Thu, 7 Jan 2010 21:13:55 +0100
> 
> Without WEXT_PRIV set the driver fails to build due to unknown fields in
> the iw_handler_def struct.
> Those fields are enclosed in WEXT_PRIV conditionals in the prototype
> of iw_handler_def in include/net/iw_handler.h
> 
> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
> ---
> Patch against Linux-next of Do 7. Jan 19:59:41 CET 2010
> 
> drivers/staging/otus/Kconfig |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/staging/otus/Kconfig b/drivers/staging/otus/Kconfig
> index f6cc262..409e01c 100644
> --- a/drivers/staging/otus/Kconfig
> +++ b/drivers/staging/otus/Kconfig
> @@ -1,6 +1,8 @@
>  config OTUS
>  	tristate "Atheros OTUS 802.11n USB wireless support"
>  	depends on USB && WLAN && MAC80211
> +    select WIRELESS_EXT
> +    select WEXT_PRIV
>  	default N
>  	---help---
>  	  Enable support for Atheros 802.11n USB hardware:

Indentation seems to be broken here and in the next patch -
4 spaces instead of a tab.


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

* [PATCH 1/3 v2] staging/otus: Add select WEXT_PRIV to Kconfig to prevent build failure
  2010-01-07 20:33 [PATCH 1/3] staging/otus: Add select WEXT_PRIV to Kconfig to prevent build failure Peter Huewe
  2010-01-07 20:35 ` [PATCH 2/3] staging/rtl8192u: " Peter Huewe
  2010-01-08  0:37 ` [PATCH 1/3] staging/otus: " Simon Horman
@ 2010-01-08  8:13 ` Peter Hüwe
  2010-01-08 10:18   ` Simon Horman
  2 siblings, 1 reply; 10+ messages in thread
From: Peter Hüwe @ 2010-01-08  8:13 UTC (permalink / raw)
  To: devel; +Cc: Greg Kroah-Hartman, devel, linux-kernel, Simon Horman

From: Peter Huewe <peterhuewe@gmx.de>
Date: Fri, 8 Jan 2010 09:09:12 +0100

Without WEXT_PRIV set the driver fails to build due to unknown fields in
the iw_handler_def struct.
Those fields are enclosed in WEXT_PRIV conditionals in the prototype
of iw_handler_def in include/net/iw_handler.h

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
---
This time without whitespace/indention errors. Sorry about that.

 drivers/staging/otus/Kconfig |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/staging/otus/Kconfig b/drivers/staging/otus/Kconfig
index f6cc262..e918134 100644
--- a/drivers/staging/otus/Kconfig
+++ b/drivers/staging/otus/Kconfig
@@ -1,6 +1,8 @@
 config OTUS
 	tristate "Atheros OTUS 802.11n USB wireless support"
 	depends on USB && WLAN && MAC80211
+	select WIRELESS_EXT
+	select WEXT_PRIV
 	default N
 	---help---
 	  Enable support for Atheros 802.11n USB hardware:
-- 
1.6.4.4



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

* [PATCH 2/3 v2] staging/rtl8192u: Add select WEXT_PRIV to Kconfig to prevent build failure
  2010-01-07 20:35 ` [PATCH 2/3] staging/rtl8192u: " Peter Huewe
  2010-01-07 20:36   ` [PATCH 3/3] staging/wlan-ng: " Peter Huewe
@ 2010-01-08  8:14   ` Peter Hüwe
  2010-01-08 10:18     ` Simon Horman
  1 sibling, 1 reply; 10+ messages in thread
From: Peter Hüwe @ 2010-01-08  8:14 UTC (permalink / raw)
  To: devel
  Cc: Greg Kroah-Hartman, devel, Randy Dunlap, linux-kernel,
	Mauro Carvalho Chehab, Simon Horman

From: Peter Huewe <peterhuewe@gmx.de>
Date: Fri, 8 Jan 2010 09:10:13 +0100

Without WEXT_PRIV set the driver fails to build due to unknown fields in
the iw_handler_def struct.
Those fields are enclosed in WEXT_PRIV conditionals in the prototype
of iw_handler_def in include/net/iw_handler.h

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
---
This time without whitespace error  - sorry about that.

 drivers/staging/rtl8192u/Kconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/staging/rtl8192u/Kconfig b/drivers/staging/rtl8192u/Kconfig
index 9913ab8..d7bc35c 100644
--- a/drivers/staging/rtl8192u/Kconfig
+++ b/drivers/staging/rtl8192u/Kconfig
@@ -2,5 +2,6 @@ config RTL8192U
 	tristate "RealTek RTL8192U Wireless LAN NIC driver"
 	depends on PCI && WLAN && USB
 	depends on WIRELESS_EXT
+	select WEXT_PRIV
 	default N
 	---help---
-- 
1.6.4.4


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

* Re: [PATCH 2/3 v2] staging/rtl8192u: Add select WEXT_PRIV to Kconfig to prevent build failure
  2010-01-08  8:14   ` [PATCH 2/3 v2] staging/rtl8192u: " Peter Hüwe
@ 2010-01-08 10:18     ` Simon Horman
  2010-01-08 10:44       ` [PATCH 2/3 v3] " Peter Hüwe
  0 siblings, 1 reply; 10+ messages in thread
From: Simon Horman @ 2010-01-08 10:18 UTC (permalink / raw)
  To: Peter Hüwe
  Cc: devel, Greg Kroah-Hartman, devel, Randy Dunlap, linux-kernel,
	Mauro Carvalho Chehab

On Fri, Jan 08, 2010 at 09:14:38AM +0100, Peter Hüwe wrote:
> From: Peter Huewe <peterhuewe@gmx.de>
> Date: Fri, 8 Jan 2010 09:10:13 +0100
> 
> Without WEXT_PRIV set the driver fails to build due to unknown fields in
> the iw_handler_def struct.
> Those fields are enclosed in WEXT_PRIV conditionals in the prototype
> of iw_handler_def in include/net/iw_handler.h
> 
> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>

Acked-by: Simon Horman <horms@verge.net.au>

depends on WIRELESS_EXT should be select WIRELESS_EXT.
Do you want to handle that?

> ---
> This time without whitespace error  - sorry about that.
> 
>  drivers/staging/rtl8192u/Kconfig |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/staging/rtl8192u/Kconfig b/drivers/staging/rtl8192u/Kconfig
> index 9913ab8..d7bc35c 100644
> --- a/drivers/staging/rtl8192u/Kconfig
> +++ b/drivers/staging/rtl8192u/Kconfig
> @@ -2,5 +2,6 @@ config RTL8192U
>  	tristate "RealTek RTL8192U Wireless LAN NIC driver"
>  	depends on PCI && WLAN && USB
>  	depends on WIRELESS_EXT
> +	select WEXT_PRIV
>  	default N
>  	---help---
> -- 
> 1.6.4.4

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

* Re: [PATCH 1/3 v2] staging/otus: Add select WEXT_PRIV to Kconfig to prevent build failure
  2010-01-08  8:13 ` [PATCH 1/3 v2] " Peter Hüwe
@ 2010-01-08 10:18   ` Simon Horman
  0 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2010-01-08 10:18 UTC (permalink / raw)
  To: Peter Hüwe; +Cc: devel, Greg Kroah-Hartman, devel, linux-kernel

On Fri, Jan 08, 2010 at 09:13:19AM +0100, Peter Hüwe wrote:
> From: Peter Huewe <peterhuewe@gmx.de>
> Date: Fri, 8 Jan 2010 09:09:12 +0100
> 
> Without WEXT_PRIV set the driver fails to build due to unknown fields in
> the iw_handler_def struct.
> Those fields are enclosed in WEXT_PRIV conditionals in the prototype
> of iw_handler_def in include/net/iw_handler.h
> 
> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>

Acked-by: Simon Horman <horms@verge.net.au>

> ---
> This time without whitespace/indention errors. Sorry about that.
> 
>  drivers/staging/otus/Kconfig |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/staging/otus/Kconfig b/drivers/staging/otus/Kconfig
> index f6cc262..e918134 100644
> --- a/drivers/staging/otus/Kconfig
> +++ b/drivers/staging/otus/Kconfig
> @@ -1,6 +1,8 @@
>  config OTUS
>  	tristate "Atheros OTUS 802.11n USB wireless support"
>  	depends on USB && WLAN && MAC80211
> +	select WIRELESS_EXT
> +	select WEXT_PRIV
>  	default N
>  	---help---
>  	  Enable support for Atheros 802.11n USB hardware:
> -- 
> 1.6.4.4
> 

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

* Re: [PATCH 2/3 v3] staging/rtl8192u: Add select WEXT_PRIV to Kconfig to prevent build failure
  2010-01-08 10:18     ` Simon Horman
@ 2010-01-08 10:44       ` Peter Hüwe
  0 siblings, 0 replies; 10+ messages in thread
From: Peter Hüwe @ 2010-01-08 10:44 UTC (permalink / raw)
  To: Simon Horman
  Cc: devel, Greg Kroah-Hartman, Randy Dunlap, linux-kernel,
	Mauro Carvalho Chehab

From: Peter Huewe <peterhuewe@gmx.de>
Date: Fri, 8 Jan 2010 09:10:13 +0100

Without WEXT_PRIV set the driver fails to build due to unknown fields in
the iw_handler_def struct.
Those fields are enclosed in WEXT_PRIV conditionals in the prototype
of iw_handler_def in include/net/iw_handler.h

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Acked-by: Simon Horman <horms@verge.net.au>
---
 drivers/staging/rtl8192u/Kconfig |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/rtl8192u/Kconfig b/drivers/staging/rtl8192u/Kconfig
index 9913ab8..0439c90 100644
--- a/drivers/staging/rtl8192u/Kconfig
+++ b/drivers/staging/rtl8192u/Kconfig
@@ -1,6 +1,7 @@
 config RTL8192U
 	tristate "RealTek RTL8192U Wireless LAN NIC driver"
 	depends on PCI && WLAN && USB
-	depends on WIRELESS_EXT
+	select WIRELESS_EXT
+	select WEXT_PRIV
 	default N
 	---help---
-- 
1.6.4.4


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

end of thread, other threads:[~2010-01-08 10:44 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-01-07 20:33 [PATCH 1/3] staging/otus: Add select WEXT_PRIV to Kconfig to prevent build failure Peter Huewe
2010-01-07 20:35 ` [PATCH 2/3] staging/rtl8192u: " Peter Huewe
2010-01-07 20:36   ` [PATCH 3/3] staging/wlan-ng: " Peter Huewe
2010-01-08  0:35     ` Simon Horman
2010-01-08  8:14   ` [PATCH 2/3 v2] staging/rtl8192u: " Peter Hüwe
2010-01-08 10:18     ` Simon Horman
2010-01-08 10:44       ` [PATCH 2/3 v3] " Peter Hüwe
2010-01-08  0:37 ` [PATCH 1/3] staging/otus: " Simon Horman
2010-01-08  8:13 ` [PATCH 1/3 v2] " Peter Hüwe
2010-01-08 10:18   ` Simon Horman

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

Powered by JetHome