Re: at76c593a and WUSB11 2.6 problem
Dossy <[email protected]>
| Newsgroups | gmane.linux.drivers.at76c503a.user |
|---|---|
| Message-ID | <[email protected]> |
On 2003.12.29, James Reece <[email protected]> wrote: > Hello, trying to use my WUSB11 2.6 [...] I discovered that my WUSB11 V2.6 doesn't like the newer 1.101.0-84 firmware that is used by the at76c503-rfmd driver, but works fine using the older 0.90.2-140 firmware. Try applying the patch below (basically, change the #include line to include the older firmware), recompile and load the newly compiled at76c503-rfmd.o module and see if your luck improves. ==8<==cut here==8<== --- at76c503-rfmd.c.orig 2003-10-22 20:11:58.000000000 -0400 +++ at76c503-rfmd.c 2003-10-22 20:27:19.000000000 -0400 @@ -41,7 +41,17 @@ /* Include firmware data definition */ +#if 0 #include "fw-rfmd-1.101.0-84.h" +#endif + +/* + * The Linksys WUSB11 v2.6 refuses to work under the 1.101.0-84 and + * 0.100.4-16 firmwares. Everything seems to load, but the radio + * doesn't appear to send or receive. It does work with the 0.90.2-140 + * firmware, however. + */ +#include "fw-rfmd-0.90.2-140.h" /* Version Information */ ==8<==cut here==8<== -- Dossy Shiobara mail: [email protected] Panoptic Computer Network web: http://www.panoptic.com/ "He realized the fastest way to change is to laugh at your own folly -- then you can let go and quickly move on." (p. 70)
at76c503-rfmd.c.patch
(text/plain, 535 B)
--- at76c503-rfmd.c.orig 2003-10-22 20:11:58.000000000 -0400 +++ at76c503-rfmd.c 2003-10-22 20:27:19.000000000 -0400 @@ -41,7 +41,17 @@ /* Include firmware data definition */ +#if 0 #include "fw-rfmd-1.101.0-84.h" +#endif + +/* + * The Linksys WUSB11 v2.6 refuses to work under the 1.101.0-84 and + * 0.100.4-16 firmwares. Everything seems to load, but the radio + * doesn't appear to send or receive. It does work with the 0.90.2-140 + * firmware, however. + */ +#include "fw-rfmd-0.90.2-140.h" /* Version Information */