* zd1211rw problem
@ 2008-11-12 23:20 Karakontakis Apostolos
2008-11-13 0:28 ` John W. Linville
0 siblings, 1 reply; 4+ messages in thread
From: Karakontakis Apostolos @ 2008-11-12 23:20 UTC (permalink / raw)
To: linux-wireless
Hi,
I have recenetly bought a usb wireless stick that requires zd1211rw driver
(ZyDAS ZD1211B chipset).With kernel 2.6.24 it works ok but with kernel
2.6.27.2 it dos not.
1. I have the latest firmware in /lib/firmware/zd1211
2. i have CONFIG_MAC80211 and CONFIG_FW_LOADER = y
3. i have CONFIG_ZD1211RW=m
when i insert the module i get the following errors
Nov 13 01:02:20 hakarako kernel: mac80211: Unknown parameter
`ieee80211_regdom'
Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_free_hw
Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_alloc_hw
Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
ieee80211_register_hw
Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
ieee80211_tx_status_irqsafe
Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
ieee80211_wake_queues
Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
ieee80211_stop_queues
Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
ieee80211_unregister_hw
Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_beacon_get
Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_rx_irqsafe
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: zd1211rw problem
2008-11-12 23:20 zd1211rw problem Karakontakis Apostolos
@ 2008-11-13 0:28 ` John W. Linville
2008-11-13 23:10 ` Stefanik Gábor
2008-11-14 13:07 ` Karakontakis Apostolos
0 siblings, 2 replies; 4+ messages in thread
From: John W. Linville @ 2008-11-13 0:28 UTC (permalink / raw)
To: Karakontakis Apostolos; +Cc: linux-wireless
On Thu, Nov 13, 2008 at 01:20:48AM +0200, Karakontakis Apostolos wrote:
> Hi,
>
> I have recenetly bought a usb wireless stick that requires zd1211rw driver
> (ZyDAS ZD1211B chipset).With kernel 2.6.24 it works ok but with kernel
> 2.6.27.2 it dos not.
>
> 1. I have the latest firmware in /lib/firmware/zd1211
> 2. i have CONFIG_MAC80211 and CONFIG_FW_LOADER = y
> 3. i have CONFIG_ZD1211RW=m
>
> when i insert the module i get the following errors
>
> Nov 13 01:02:20 hakarako kernel: mac80211: Unknown parameter
> `ieee80211_regdom'
This parameter no longer exists for mac80211. A similar parameter
now exists for cfg80211, but the format is different.
The mac80211 module isn't loading due to the unknown parameter.
> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_free_hw
> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_alloc_hw
> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> ieee80211_register_hw
> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> ieee80211_tx_status_irqsafe
> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> ieee80211_wake_queues
> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> ieee80211_stop_queues
> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> ieee80211_unregister_hw
> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_beacon_get
> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_rx_irqsafe
Since mac80211 didn't load, zd1211rw won't load.
Remove that mac80211 option from modprobe.conf (and possibly add the
equivalent parameter to cfg80211), the modprobe zd1211rw again.
John
--
John W. Linville Linux should be at the core
linville@tuxdriver.com of your literate lifestyle.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: zd1211rw problem
2008-11-13 0:28 ` John W. Linville
@ 2008-11-13 23:10 ` Stefanik Gábor
2008-11-14 13:07 ` Karakontakis Apostolos
1 sibling, 0 replies; 4+ messages in thread
From: Stefanik Gábor @ 2008-11-13 23:10 UTC (permalink / raw)
To: John W. Linville; +Cc: Karakontakis Apostolos, linux-wireless
On Thu, Nov 13, 2008 at 1:28 AM, John W. Linville
<linville@tuxdriver.com> wrote:
> On Thu, Nov 13, 2008 at 01:20:48AM +0200, Karakontakis Apostolos wrote:
>> Hi,
>>
>> I have recenetly bought a usb wireless stick that requires zd1211rw driver
>> (ZyDAS ZD1211B chipset).With kernel 2.6.24 it works ok but with kernel
>> 2.6.27.2 it dos not.
>>
>> 1. I have the latest firmware in /lib/firmware/zd1211
>> 2. i have CONFIG_MAC80211 and CONFIG_FW_LOADER = y
>> 3. i have CONFIG_ZD1211RW=m
>>
>> when i insert the module i get the following errors
>>
>> Nov 13 01:02:20 hakarako kernel: mac80211: Unknown parameter
>> `ieee80211_regdom'
>
> This parameter no longer exists for mac80211. A similar parameter
> now exists for cfg80211, but the format is different.
>
> The mac80211 module isn't loading due to the unknown parameter.
>
>> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_free_hw
>> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_alloc_hw
>> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
>> ieee80211_register_hw
>> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
>> ieee80211_tx_status_irqsafe
>> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
>> ieee80211_wake_queues
>> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
>> ieee80211_stop_queues
>> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
>> ieee80211_unregister_hw
>> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_beacon_get
>> Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol ieee80211_rx_irqsafe
>
> Since mac80211 didn't load, zd1211rw won't load.
>
> Remove that mac80211 option from modprobe.conf (and possibly add the
> equivalent parameter to cfg80211), the modprobe zd1211rw again.
>
> John
> --
> John W. Linville Linux should be at the core
> linville@tuxdriver.com of your literate lifestyle.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
Also, be sure to set CONFIG_MAC80211=m (not =y).
--
Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: zd1211rw problem
2008-11-13 0:28 ` John W. Linville
2008-11-13 23:10 ` Stefanik Gábor
@ 2008-11-14 13:07 ` Karakontakis Apostolos
1 sibling, 0 replies; 4+ messages in thread
From: Karakontakis Apostolos @ 2008-11-14 13:07 UTC (permalink / raw)
To: John W. Linville; +Cc: linux-wireless, netrolller.3d
On Thursday 13 November 2008 02:28:04 you wrote:
> On Thu, Nov 13, 2008 at 01:20:48AM +0200, Karakontakis Apostolos wrote:
> > Hi,
> >
> > I have recenetly bought a usb wireless stick that requires zd1211rw
> > driver (ZyDAS ZD1211B chipset).With kernel 2.6.24 it works ok but with
> > kernel 2.6.27.2 it dos not.
> >
> > 1. I have the latest firmware in /lib/firmware/zd1211
> > 2. i have CONFIG_MAC80211 and CONFIG_FW_LOADER = y
> > 3. i have CONFIG_ZD1211RW=m
> >
> > when i insert the module i get the following errors
> >
> > Nov 13 01:02:20 hakarako kernel: mac80211: Unknown parameter
> > `ieee80211_regdom'
>
> This parameter no longer exists for mac80211. A similar parameter
> now exists for cfg80211, but the format is different.
>
> The mac80211 module isn't loading due to the unknown parameter.
>
> > Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> > ieee80211_free_hw Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown
> > symbol ieee80211_alloc_hw Nov 13 01:02:20 hakarako kernel: zd1211rw:
> > Unknown symbol
> > ieee80211_register_hw
> > Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> > ieee80211_tx_status_irqsafe
> > Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> > ieee80211_wake_queues
> > Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> > ieee80211_stop_queues
> > Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> > ieee80211_unregister_hw
> > Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown symbol
> > ieee80211_beacon_get Nov 13 01:02:20 hakarako kernel: zd1211rw: Unknown
> > symbol ieee80211_rx_irqsafe
>
> Since mac80211 didn't load, zd1211rw won't load.
>
> Remove that mac80211 option from modprobe.conf (and possibly add the
> equivalent parameter to cfg80211), the modprobe zd1211rw again.
>
> John
>>> Also, be sure to set CONFIG_MAC80211=m (not =y).
Thanks, it worked.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-11-14 13:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-12 23:20 zd1211rw problem Karakontakis Apostolos
2008-11-13 0:28 ` John W. Linville
2008-11-13 23:10 ` Stefanik Gábor
2008-11-14 13:07 ` Karakontakis Apostolos
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).