Commit 26e6385f authored by David S. Miller's avatar David S. Miller

[SPARC64]: Use alloc_pci_dev() in PCI bus probes.

Otherwise MSI explodes because pci_msi_init_pci_dev() does not
get invoked.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9245df0c
...@@ -377,7 +377,7 @@ struct pci_dev *of_create_pci_dev(struct pci_pbm_info *pbm, ...@@ -377,7 +377,7 @@ struct pci_dev *of_create_pci_dev(struct pci_pbm_info *pbm,
const char *type; const char *type;
u32 class; u32 class;
dev = kzalloc(sizeof(struct pci_dev), GFP_KERNEL); dev = alloc_pci_dev();
if (!dev) if (!dev)
return NULL; return NULL;
......
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