From: Zac Storer Date: Fri, 18 Nov 2011 06:07:49 +0000 (-0700) Subject: PCI: fix a brace coding style issue in probe.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=68e35c9b0b9dfad1ec5d1e2858b9c7e2076763e5;p=mv-sheeva.git PCI: fix a brace coding style issue in probe.c Fixed a brace coding style issue. Signed-off-by: Zac Storer Signed-off-by: Jesse Barnes --- diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 04e74f48571..d5d0ab810f7 100644 --- 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; }