Commit 68e35c9b authored by Zac Storer's avatar Zac Storer Committed by Jesse Barnes

PCI: fix a brace coding style issue in probe.c

Fixed a brace coding style issue.
Signed-off-by: default avatarZac Storer <zac.3.14159@gmail.com>
Signed-off-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
parent 82440a82
...@@ -1534,7 +1534,7 @@ struct pci_bus * pci_create_bus(struct device *parent, ...@@ -1534,7 +1534,7 @@ struct pci_bus * pci_create_bus(struct device *parent,
return NULL; return NULL;
dev = kzalloc(sizeof(*dev), GFP_KERNEL); dev = kzalloc(sizeof(*dev), GFP_KERNEL);
if (!dev){ if (!dev) {
kfree(b); kfree(b);
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