]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
PCI: fix a brace coding style issue in probe.c
authorZac Storer <zac.3.14159@gmail.com>
Fri, 18 Nov 2011 06:07:49 +0000 (23:07 -0700)
committerJesse 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

index 04e74f4857146e4700669504de55a6ad632823a0..d5d0ab810f790e8c4a7337e1b58a9b091fbb024c 100644 (file)
@@ -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;
        }