Commit e11f66e7 authored by Adrian Bunk's avatar Adrian Bunk Committed by Jeff Garzik

[netdrvr sis190] fix build with older gcc

older gcc's do not support C99/C++ style of variable declarations.
parent 6cf73674
...@@ -536,6 +536,7 @@ SiS190_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -536,6 +536,7 @@ SiS190_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
static int printed_version = 0; static int printed_version = 0;
int i, rc; int i, rc;
u16 reg31; u16 reg31;
int val;
assert(pdev != NULL); assert(pdev != NULL);
assert(ent != NULL); assert(ent != NULL);
...@@ -620,7 +621,7 @@ SiS190_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -620,7 +621,7 @@ SiS190_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
dev->dev_addr[2], dev->dev_addr[3], dev->dev_addr[2], dev->dev_addr[3],
dev->dev_addr[4], dev->dev_addr[5], dev->irq); dev->dev_addr[4], dev->dev_addr[5], dev->irq);
int val = smdio_read(ioaddr, PHY_AUTO_NEGO_REG); val = smdio_read(ioaddr, PHY_AUTO_NEGO_REG);
printk(KERN_INFO "%s: Auto-negotiation Enabled.\n", dev->name); printk(KERN_INFO "%s: Auto-negotiation Enabled.\n", dev->name);
......
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