Commit 12a7807a authored by Don Fry's avatar Don Fry Committed by Jeff Garzik

[PATCH] pcnet32.c add support for 79C976

Please include this patch to add support for the 79C976 device to the
pcnet32 driver.
parent 196c4ebd
...@@ -909,6 +909,10 @@ pcnet32_probe1(unsigned long ioaddr, unsigned int irq_line, int shared, ...@@ -909,6 +909,10 @@ pcnet32_probe1(unsigned long ioaddr, unsigned int irq_line, int shared,
chipname = "PCnet/FAST III 79C975"; /* PCI */ chipname = "PCnet/FAST III 79C975"; /* PCI */
fdx = 1; mii = 1; fdx = 1; mii = 1;
break; break;
case 0x2628:
chipname = "PCnet/FAST III 79C976";
fdx = 1; mii = 1;
break;
default: default:
printk(KERN_INFO PFX "PCnet version %#x, no PCnet32 chip.\n", printk(KERN_INFO PFX "PCnet version %#x, no PCnet32 chip.\n",
chip_version); chip_version);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment