Messages in this thread Patch in this message |  | | | Date | Wed, 7 Jun 2006 16:00:45 +0200 | | From | Pavel Machek <> | | Subject | [patch] workaround zd1201 interference problem |
| |
zd1201 likes to start up shouting, interfering with all wifis in range. It is capable of stopping ipw2200 up-to few meters away, and stops other cards at smaller distances, too.
This works around it. Only forcing ZD1201_CMDCODE_DISABLE is not enough to prevent interference.
From: Jirka Benc <jbenc@suse.cz> Signed-off-by: Pavel Machek <pavel@suse.cz>
--- linux-good/drivers/net/wireless/zd1201.c 2006-03-30 13:51:58.000000000 +0200 +++ linux/drivers/net/wireless/zd1201.c 2006-06-07 15:55:01.000000000 +0200 @@ -1835,6 +1835,8 @@ zd->dev->name); usb_set_intfdata(interface, zd); + zd1201_enable(zd); /* zd1201 likes to startup shouting, interfering */ + zd1201_disable(zd); /* with all the wifis in range */ return 0; err_net: -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html - 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/
|  |