mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 18:23:53 +08:00
sis190: early setting of the pci driver private data
Below this point, the error path will proceed through sis190_release_board(). It will happily oops if pci_set_drvdata() has not been issued. Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
This commit is contained in:
parent
26d451b603
commit
10487fbd74
@ -1791,6 +1791,8 @@ static int __devinit sis190_init_one(struct pci_dev *pdev,
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pci_set_drvdata(pdev, dev);
|
||||||
|
|
||||||
tp = netdev_priv(dev);
|
tp = netdev_priv(dev);
|
||||||
ioaddr = tp->mmio_addr;
|
ioaddr = tp->mmio_addr;
|
||||||
|
|
||||||
@ -1827,8 +1829,6 @@ static int __devinit sis190_init_one(struct pci_dev *pdev,
|
|||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
goto err_remove_mii;
|
goto err_remove_mii;
|
||||||
|
|
||||||
pci_set_drvdata(pdev, dev);
|
|
||||||
|
|
||||||
net_probe(tp, KERN_INFO "%s: %s at %p (IRQ: %d), "
|
net_probe(tp, KERN_INFO "%s: %s at %p (IRQ: %d), "
|
||||||
"%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x\n",
|
"%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x\n",
|
||||||
pci_name(pdev), sis_chip_info[ent->driver_data].name,
|
pci_name(pdev), sis_chip_info[ent->driver_data].name,
|
||||||
|
Loading…
Reference in New Issue
Block a user