commit | 68e35c9b0b9dfad1ec5d1e2858b9c7e2076763e5 | [log] [tgz] |
---|---|---|
author | Zac Storer <zac.3.14159@gmail.com> | Thu Nov 17 23:07:49 2011 -0700 |
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | Fri Jan 06 12:10:31 2012 -0800 |
tree | b29ecd519677c8a424472a6303e7d0e091b3f331 | |
parent | 82440a8253e09047410ff4df5c202be15645573f [diff] [blame] |
PCI: fix a brace coding style issue in probe.c Fixed a brace coding style issue. Signed-off-by: Zac Storer <zac.3.14159@gmail.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 04e74f4..d5d0ab8 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c
@@ -1534,7 +1534,7 @@ return NULL; dev = kzalloc(sizeof(*dev), GFP_KERNEL); - if (!dev){ + if (!dev) { kfree(b); return NULL; }