[PATCH] Obvious bugfix for yenta resource allocation
authorPaul Mackerras <paulus@samba.org>
Tue, 2 Aug 2005 11:51:36 +0000 (21:51 +1000)
committerLinus Torvalds <torvalds@g5.osdl.org>
Tue, 2 Aug 2005 15:28:48 +0000 (08:28 -0700)
commitf7d1d23c301e0ce82c801f3b5800be6341752a1f
tree12095ed260df39f8ee870f38d108d90519feb32f
parent9a351e30d72d409ec62c83f380e330e0baa584b4
[PATCH] Obvious bugfix for yenta resource allocation

Recent changes (well, dating from 12 July) have broken cardbus on my
powerbook: I get 3 messages saying "no resource of type xxx available,
trying to continue", and if I plug in my wireless card, it complains
that there are no resources allocated to the card.  This all worked in
2.6.12.

Looking at the code in yenta_socket.c, function yenta_allocate_res,
it's obvious what is wrong: if we get to line 639 (i.e. there wasn't a
usable preassigned resource), we will always flow through to line 668,
which is the printk that I was seeing, even if a resource was
successfully allocated.  It looks to me as though there should be a
return statement after the two config_writel's in each of the 3
branches of the if statements, so that the function returns after
successfully setting up the resource.

The patch below adds these return statements, and with this patch,
cardbus works on my powerbook once again.

Signed-off-by: Paul Mackerras <paulus@samba.org>
Acked-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/pcmcia/yenta_socket.c