public inbox for linux-next@vger.kernel.org 
 help / color / mirror / Atom feed
* print_ssid undefined (linux-next 20081103)
@ 2008-11-03 19:42 Randy Dunlap
  2008-11-03 20:07 ` Johannes Berg
  2008-11-03 20:12 ` Luis R. Rodriguez
  0 siblings, 2 replies; 4+ messages in thread
From: Randy Dunlap @ 2008-11-03 19:42 UTC (permalink / raw)
  To: linux-wireless-u79uwXL29TY76Z2rM5mHXA; +Cc: linux-next-u79uwXL29TY76Z2rM5mHXA

Hi,

I'm seeing a few instances of

ERROR: "print_ssid" [drivers/net/wireless/ipw2100.ko] undefined!

with ipw2100 & ipw2200 in today's linux-next (20081103).

These configs have
# CONFIG_WIRELESS is not set
CONFIG_WIRELESS_EXT=y

In looking into this more, I see that the wireless drivers can be enabled
& built even when CONFIG_WIRELESS=n.  Is this the expected behavior?
Seems a bit odd.

Thanks,
---
~Randy
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public•gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: print_ssid undefined (linux-next 20081103)
  2008-11-03 19:42 print_ssid undefined (linux-next 20081103) Randy Dunlap
@ 2008-11-03 20:07 ` Johannes Berg
  2008-11-03 20:12 ` Luis R. Rodriguez
  1 sibling, 0 replies; 4+ messages in thread
From: Johannes Berg @ 2008-11-03 20:07 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-wireless, linux-next, John W. Linville

[-- Attachment #1: Type: text/plain, Size: 728 bytes --]

On Mon, 2008-11-03 at 11:42 -0800, Randy Dunlap wrote:
> Hi,
> 
> I'm seeing a few instances of
> 
> ERROR: "print_ssid" [drivers/net/wireless/ipw2100.ko] undefined!
> 
> with ipw2100 & ipw2200 in today's linux-next (20081103).

missing lib80211, because those drivers select IEEE80211 which in turns
selects a few things that are then not selected... oh well

> These configs have
> # CONFIG_WIRELESS is not set
> CONFIG_WIRELESS_EXT=y
> 
> In looking into this more, I see that the wireless drivers can be enabled
> & built even when CONFIG_WIRELESS=n.  Is this the expected behavior?
> Seems a bit odd.

Yeah, side effect of my patch to hide the IEEE80211 stuff. We may need
to revert that.

johannes

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: print_ssid undefined (linux-next 20081103)
  2008-11-03 19:42 print_ssid undefined (linux-next 20081103) Randy Dunlap
  2008-11-03 20:07 ` Johannes Berg
@ 2008-11-03 20:12 ` Luis R. Rodriguez
  2008-11-03 21:32   ` Randy Dunlap
  1 sibling, 1 reply; 4+ messages in thread
From: Luis R. Rodriguez @ 2008-11-03 20:12 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-wireless@vger•kernel.org, linux-next@vger•kernel.org

On Mon, Nov 03, 2008 at 11:42:22AM -0800, Randy Dunlap wrote:
> Hi,
> 
> I'm seeing a few instances of
> 
> ERROR: "print_ssid" [drivers/net/wireless/ipw2100.ko] undefined!
> 
> with ipw2100 & ipw2200 in today's linux-next (20081103).
> 
> These configs have
> # CONFIG_WIRELESS is not set
> CONFIG_WIRELESS_EXT=y
> 
> In looking into this more, I see that the wireless drivers can be enabled
> & built even when CONFIG_WIRELESS=n.  Is this the expected behavior?
> Seems a bit odd.

Try this.

diff --git a/drivers/net/wireless/Kconfig b/drivers/net/wireless/Kconfig
index 42afaed..6f85bec 100644
--- a/drivers/net/wireless/Kconfig
+++ b/drivers/net/wireless/Kconfig
@@ -125,7 +125,7 @@ config PCMCIA_RAYCS
 
 config IPW2100
 	tristate "Intel PRO/Wireless 2100 Network Connection"
-	depends on PCI && WLAN_80211
+	depends on PCI && WLAN_80211 && LIB80211
 	select WIRELESS_EXT
 	select FW_LOADER
 	select IEEE80211
@@ -183,7 +183,7 @@ config IPW2100_DEBUG
 
 config IPW2200
 	tristate "Intel PRO/Wireless 2200BG and 2915ABG Network Connection"
-	depends on PCI && WLAN_80211
+	depends on PCI && WLAN_80211 && LIB80211
 	select WIRELESS_EXT
 	select FW_LOADER
 	select IEEE80211

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

* Re: print_ssid undefined (linux-next 20081103)
  2008-11-03 20:12 ` Luis R. Rodriguez
@ 2008-11-03 21:32   ` Randy Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2008-11-03 21:32 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: linux-wireless@vger•kernel.org, linux-next@vger•kernel.org

On Mon, 3 Nov 2008 12:12:06 -0800 Luis R. Rodriguez wrote:

> On Mon, Nov 03, 2008 at 11:42:22AM -0800, Randy Dunlap wrote:
> > Hi,
> > 
> > I'm seeing a few instances of
> > 
> > ERROR: "print_ssid" [drivers/net/wireless/ipw2100.ko] undefined!
> > 
> > with ipw2100 & ipw2200 in today's linux-next (20081103).
> > 
> > These configs have
> > # CONFIG_WIRELESS is not set
> > CONFIG_WIRELESS_EXT=y
> > 
> > In looking into this more, I see that the wireless drivers can be enabled
> > & built even when CONFIG_WIRELESS=n.  Is this the expected behavior?
> > Seems a bit odd.
> 
> Try this.
> 
> diff --git a/drivers/net/wireless/Kconfig b/drivers/net/wireless/Kconfig
> index 42afaed..6f85bec 100644
> --- a/drivers/net/wireless/Kconfig
> +++ b/drivers/net/wireless/Kconfig
> @@ -125,7 +125,7 @@ config PCMCIA_RAYCS
>  
>  config IPW2100
>  	tristate "Intel PRO/Wireless 2100 Network Connection"
> -	depends on PCI && WLAN_80211
> +	depends on PCI && WLAN_80211 && LIB80211
>  	select WIRELESS_EXT
>  	select FW_LOADER
>  	select IEEE80211
> @@ -183,7 +183,7 @@ config IPW2100_DEBUG
>  
>  config IPW2200
>  	tristate "Intel PRO/Wireless 2200BG and 2915ABG Network Connection"
> -	depends on PCI && WLAN_80211
> +	depends on PCI && WLAN_80211 && LIB80211
>  	select WIRELESS_EXT
>  	select FW_LOADER
>  	select IEEE80211
> --

> make ARCH=i386 O=X32 oldconfig
  GEN     /local/linsrc/linux-next-20081103/X32/Makefile
scripts/kconfig/conf -o arch/x86/Kconfig
net/ieee80211/Kconfig:3:error: found recursive dependency: IEEE80211 -> LIB80211 -> IPW2100 -> IEEE80211
make[2]: *** [oldconfig] Error 1

---
~Randy

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

end of thread, other threads:[~2008-11-03 21:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-03 19:42 print_ssid undefined (linux-next 20081103) Randy Dunlap
2008-11-03 20:07 ` Johannes Berg
2008-11-03 20:12 ` Luis R. Rodriguez
2008-11-03 21:32   ` Randy Dunlap

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