projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82440a8
)
PCI: fix a brace coding style issue in probe.c
author
Zac Storer
<zac.3.14159@gmail.com>
Fri, 18 Nov 2011 06:07:49 +0000
(23:07 -0700)
committer
Jesse Barnes
<jbarnes@virtuousgeek.org>
Fri, 6 Jan 2012 20:10:31 +0000
(12:10 -0800)
Fixed a brace coding style issue.
Signed-off-by: Zac Storer <zac.3.14159@gmail.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
drivers/pci/probe.c
patch
|
blob
|
history
diff --git
a/drivers/pci/probe.c
b/drivers/pci/probe.c
index
04e74f4
..
d5d0ab8
100644
(file)
--- a/
drivers/pci/probe.c
+++ b/
drivers/pci/probe.c
@@
-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;
}