Commit e54f4893 authored by Jeff Garzik's avatar Jeff Garzik

[netdrvr] via-velocity: misc. cleanups

- const-ify pci_device_id table
- clean up pci_device_id table with PCI_DEVICE()
- don't store internal pointer in pci_device_id table,
  use pci_device_id::driver_data as an integer index
- use dev_printk() for messages where eth%d prefix is unavailable
- formatting fixes
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 46009c8b
...@@ -304,10 +304,9 @@ static struct velocity_info_tbl chip_info_table[] = { ...@@ -304,10 +304,9 @@ static struct velocity_info_tbl chip_info_table[] = {
* device driver. Used for hotplug autoloading. * device driver. Used for hotplug autoloading.
*/ */
static struct pci_device_id velocity_id_table[] __devinitdata = { static const struct pci_device_id velocity_id_table[] __devinitdata = {
{PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_612X, { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_612X) },
PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long) chip_info_table}, { }
{0, }
}; };
MODULE_DEVICE_TABLE(pci, velocity_id_table); MODULE_DEVICE_TABLE(pci, velocity_id_table);
...@@ -686,21 +685,23 @@ static int __devinit velocity_found1(struct pci_dev *pdev, const struct pci_devi ...@@ -686,21 +685,23 @@ static int __devinit velocity_found1(struct pci_dev *pdev, const struct pci_devi
static int first = 1; static int first = 1;
struct net_device *dev; struct net_device *dev;
int i; int i;
struct velocity_info_tbl *info = (struct velocity_info_tbl *) ent->driver_data; struct velocity_info_tbl *info = &chip_info_table[ent->driver_data];
struct velocity_info *vptr; struct velocity_info *vptr;
struct mac_regs __iomem * regs; struct mac_regs __iomem * regs;
int ret = -ENOMEM; int ret = -ENOMEM;
/* FIXME: this driver, like almost all other ethernet drivers,
* can support more than MAX_UNITS.
*/
if (velocity_nics >= MAX_UNITS) { if (velocity_nics >= MAX_UNITS) {
printk(KERN_NOTICE VELOCITY_NAME ": already found %d NICs.\n", dev_printk(KERN_NOTICE, &pdev->dev, "already found %d NICs.\n",
velocity_nics); velocity_nics);
return -ENODEV; return -ENODEV;
} }
dev = alloc_etherdev(sizeof(struct velocity_info)); dev = alloc_etherdev(sizeof(struct velocity_info));
if (!dev) {
if (dev == NULL) { dev_printk(KERN_ERR, &pdev->dev, "allocate net device failed.\n");
printk(KERN_ERR VELOCITY_NAME ": allocate net device failed.\n");
goto out; goto out;
} }
...@@ -731,13 +732,13 @@ static int __devinit velocity_found1(struct pci_dev *pdev, const struct pci_devi ...@@ -731,13 +732,13 @@ static int __devinit velocity_found1(struct pci_dev *pdev, const struct pci_devi
ret = velocity_get_pci_info(vptr, pdev); ret = velocity_get_pci_info(vptr, pdev);
if (ret < 0) { if (ret < 0) {
printk(KERN_ERR VELOCITY_NAME ": Failed to find PCI device.\n"); /* error message already printed */
goto err_disable; goto err_disable;
} }
ret = pci_request_regions(pdev, VELOCITY_NAME); ret = pci_request_regions(pdev, VELOCITY_NAME);
if (ret < 0) { if (ret < 0) {
printk(KERN_ERR VELOCITY_NAME ": Failed to find PCI device.\n"); dev_printk(KERN_ERR, &pdev->dev, "No PCI resources.\n");
goto err_disable; goto err_disable;
} }
...@@ -883,8 +884,7 @@ static void __devinit velocity_init_info(struct pci_dev *pdev, struct velocity_i ...@@ -883,8 +884,7 @@ static void __devinit velocity_init_info(struct pci_dev *pdev, struct velocity_i
static int __devinit velocity_get_pci_info(struct velocity_info *vptr, struct pci_dev *pdev) static int __devinit velocity_get_pci_info(struct velocity_info *vptr, struct pci_dev *pdev)
{ {
if (pci_read_config_byte(pdev, PCI_REVISION_ID, &vptr->rev_id) < 0)
if(pci_read_config_byte(pdev, PCI_REVISION_ID, &vptr->rev_id) < 0)
return -EIO; return -EIO;
pci_set_master(pdev); pci_set_master(pdev);
...@@ -892,24 +892,20 @@ static int __devinit velocity_get_pci_info(struct velocity_info *vptr, struct pc ...@@ -892,24 +892,20 @@ static int __devinit velocity_get_pci_info(struct velocity_info *vptr, struct pc
vptr->ioaddr = pci_resource_start(pdev, 0); vptr->ioaddr = pci_resource_start(pdev, 0);
vptr->memaddr = pci_resource_start(pdev, 1); vptr->memaddr = pci_resource_start(pdev, 1);
if(!(pci_resource_flags(pdev, 0) & IORESOURCE_IO)) if (!(pci_resource_flags(pdev, 0) & IORESOURCE_IO)) {
{ dev_printk(KERN_ERR, &pdev->dev,
printk(KERN_ERR "%s: region #0 is not an I/O resource, aborting.\n", "region #0 is not an I/O resource, aborting.\n");
pci_name(pdev));
return -EINVAL; return -EINVAL;
} }
if((pci_resource_flags(pdev, 1) & IORESOURCE_IO)) if ((pci_resource_flags(pdev, 1) & IORESOURCE_IO)) {
{ dev_printk(KERN_ERR, &pdev->dev,
printk(KERN_ERR "%s: region #1 is an I/O resource, aborting.\n", "region #1 is an I/O resource, aborting.\n");
pci_name(pdev));
return -EINVAL; return -EINVAL;
} }
if(pci_resource_len(pdev, 1) < 256) if (pci_resource_len(pdev, 1) < 256) {
{ dev_printk(KERN_ERR, &pdev->dev, "region #1 is too small.\n");
printk(KERN_ERR "%s: region #1 is too small.\n",
pci_name(pdev));
return -EINVAL; return -EINVAL;
} }
vptr->pdev = pdev; vptr->pdev = pdev;
......
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