All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] pci: added space before the open parenthesis
@ 2014-04-04 18:18 Ryan Desfosses
  2014-04-04 20:39 ` Bjorn Helgaas
  0 siblings, 1 reply; 2+ messages in thread
From: Ryan Desfosses @ 2014-04-04 18:18 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, linux-pci, Ryan Desfosses

change made to resolve checkpatch.pl error

Signed-off-by: Ryan Desfosses <ryan@desfo.org>
---
 drivers/pci/pci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index fdbc294..56acb63 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -114,7 +114,7 @@ unsigned char pci_bus_max_busnr(struct pci_bus* bus)
 	max = bus->busn_res.end;
 	list_for_each(tmp, &bus->children) {
 		n = pci_bus_max_busnr(pci_bus_b(tmp));
-		if(n > max)
+		if (n > max)
 			max = n;
 	}
 	return max;
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-04-04 20:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-04 18:18 [PATCH 2/2] pci: added space before the open parenthesis Ryan Desfosses
2014-04-04 20:39 ` Bjorn Helgaas

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.