PATCH: Fix for lance.c

Martin Mares (mj@ucw.cz)
Sat, 4 Dec 1999 15:20:12 +0100


Hi Linus!

This patch fixes the lance.c driver to call isa_readw() accordingly.

Have a nice fortnight

-- 
Martin `MJ' Mares   <mj@ucw.cz>   http://atrey.karlin.mff.cuni.cz/~mj/
Faculty of Math and Physics, Charles University, Prague, Czech Rep., Earth
"Bad command or operator..."

--- drivers/net/lance.c.mj Sat Dec 4 15:16:22 1999 +++ drivers/net/lance.c Sat Dec 4 15:16:27 1999 @@ -437,7 +437,7 @@ There are two HP versions, check the BIOS for the configuration port. This method provided by L. Julliard, Laurent_Julliard@grenoble.hp.com. */ - if (readw(0x000f0102) == 0x5048) { + if (isa_readw(0x000f0102) == 0x5048) { static const short ioaddr_table[] = { 0x300, 0x320, 0x340, 0x360}; int hp_port = (readl(0x000f00f1) & 1) ? 0x499 : 0x99; /* We can have boards other than the built-in! Verify this is on-board. */

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/