浏览代码

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>
Zac Storer 13 年之前
父节点
当前提交
68e35c9b0b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/pci/probe.c

+ 1 - 1
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;
 	}