diff options
Diffstat (limited to 'drivers/pci/probe.c')
-rw-r--r-- | drivers/pci/probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 70d37bbf09bb..c659f8ae441a 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c | |||
@@ -900,7 +900,7 @@ pci_scan_device(struct pci_bus *bus, int devfn) | |||
900 | if (pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type)) | 900 | if (pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type)) |
901 | return NULL; | 901 | return NULL; |
902 | 902 | ||
903 | dev = kzalloc(sizeof(struct pci_dev), GFP_KERNEL); | 903 | dev = alloc_pci_dev(); |
904 | if (!dev) | 904 | if (!dev) |
905 | return NULL; | 905 | return NULL; |
906 | 906 | ||