Skip to content

Commit

Permalink
PCI: fix a brace coding style issue in probe.c
Browse files Browse the repository at this point in the history
Fixed a brace coding style issue.

Signed-off-by: Zac Storer <zac.3.14159@gmail.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
  • Loading branch information
Zac Storer authored and Jesse Barnes committed Jan 6, 2012
1 parent 82440a8 commit 68e35c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/pci/probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,7 @@ struct pci_bus * pci_create_bus(struct device *parent,
return NULL;

dev = kzalloc(sizeof(*dev), GFP_KERNEL);
if (!dev){
if (!dev) {
kfree(b);
return NULL;
}
Expand Down

0 comments on commit 68e35c9

Please sign in to comment.