Re: Belkin PCMCIA F5D6020v2 kernel 2.6 atmel/atmel_cs driver

Simon Kelley <simon-xn1N/tgparsycpQjotevgVpr/1R2p/[email protected]> Sat, 17 Jan 2004 18:23:17 +0000
Newsgroups gmane.linux.drivers.atmel-wlan
Message-ID <[email protected]>
AthlonRob wrote:
> On Mon, 2004-01-12 at 02:57, Xavier Brouckaert wrote:
> 
> 
>>device "atmel"
>>  class "network" module "atmel_cs"
> 
> 
> Try changing atmel_cs to atmel-cs and see what happens.  Switching the _
> with the - solved it on my computer a while back... although IIRC I
> suggestedthe switch to somebody else and it did not solve their
> problem.  It certainly can't hurt to try, though.
> 
> Rob

The module "xxx" refers to the name of the file which gets loaded from
/lib/modules/.... which is atmel_cs.ko, unless you've changed it, so
that bit is, in fact correct. The error with the above is

device "atmel"

which tells the PCMCIA system to link a device driver called "atmel" to
the card. The problem is that the driver is called atmel_cs, hence the
error

change it to

device "atmel_cs"

and all should work.

HTH

Simon.

BTW the driver-cs versus driver_cs thing was a bad gotcha a year or so 
back, when the ide driver changed from one to the other and broke a lot 
of systems....