Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Zac Storer and committed by
Jesse Barnes
68e35c9b 82440a82

+1 -1
+1 -1
drivers/pci/probe.c
··· 1534 1534 return NULL; 1535 1535 1536 1536 dev = kzalloc(sizeof(*dev), GFP_KERNEL); 1537 - if (!dev){ 1537 + if (!dev) { 1538 1538 kfree(b); 1539 1539 return NULL; 1540 1540 }