mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 07:01:44 +02:00
brcm47xx: bcma: fix null pointer
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31789 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
aa8a1880a1
commit
1b9dfb678c
@ -0,0 +1,20 @@
|
||||
--- a/drivers/bcma/driver_pci.c
|
||||
+++ b/drivers/bcma/driver_pci.c
|
||||
@@ -232,7 +232,7 @@ void __devinit bcma_core_pci_init(struct
|
||||
int bcma_core_pci_irq_ctl(struct bcma_drv_pci *pc, struct bcma_device *core,
|
||||
bool enable)
|
||||
{
|
||||
- struct pci_dev *pdev = pc->core->bus->host_pci;
|
||||
+ struct pci_dev *pdev;
|
||||
u32 coremask, tmp;
|
||||
int err = 0;
|
||||
|
||||
@@ -243,6 +243,8 @@ int bcma_core_pci_irq_ctl(struct bcma_dr
|
||||
goto out;
|
||||
}
|
||||
|
||||
+ pdev = pc->core->bus->host_pci;
|
||||
+
|
||||
err = pci_read_config_dword(pdev, BCMA_PCI_IRQMASK, &tmp);
|
||||
if (err)
|
||||
goto out;
|
Loading…
Reference in New Issue
Block a user