public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* ArcNet and 2.6.8.1
@ 2004-09-23 15:08 Esben Nielsen
  2004-09-23 15:16 ` YOSHIFUJI Hideaki / 吉藤英明
  0 siblings, 1 reply; 12+ messages in thread
From: Esben Nielsen @ 2004-09-23 15:08 UTC (permalink / raw)
  To: linux-net, linux-kernel

Hello,
 I am trying to upgrade my labtop to 2.6.8.1. I have ArcNet COM20020
PCMCIA card. After editing /etc/pcmcia/config to make it know about the
module, it finds the com20020 with no problems but as soon as I try to
start the network device the ifconfig process crashes.

I have looked a bit at the code and compared it to 2.4.20 which I used
before (with my own patches which I have sent here to - among other things
- to make com20020_cs work). 

Somebody (how do I find out whom???)  have made an open function pointer 
instead  of the old open_close function pointer. The generic ArcNet
framework calls this function pointer into the more specialized drivers
when you start your device. But none of the specialized drivers do never
initialize the function pointer! I.e. when you start your arcnet device
you get a call to 0x0!

I fixed it by changing
	lp->hw.open(dev);
to
	if(lp->hw.open) {
		lp->hw.open(dev);
	}


Esben




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

end of thread, other threads:[~2004-09-24 17:57 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-23 15:08 ArcNet and 2.6.8.1 Esben Nielsen
2004-09-23 15:16 ` YOSHIFUJI Hideaki / 吉藤英明
2004-09-23 20:59   ` Esben Nielsen
2004-09-23 21:01     ` David S. Miller
2004-09-23 21:46       ` Esben Nielsen
2004-09-23 22:02         ` Alan Cox
2004-09-24 14:07           ` Esben Nielsen
2004-09-23 22:24         ` David S. Miller
2004-09-23 22:52           ` Esben Nielsen
2004-09-24 17:44             ` Martin Mares
2004-09-24 17:57             ` Lee Revell
2004-09-24 17:24         ` Joel Jaeggli

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