ChangeSet 1.1500.11.13, 2004/02/03 16:49:05-08:00, eike-hotplug@sf-tec.de [PATCH] PCI Hotplug: Coding style fixes for drivers/pci/hotplug.c drivers/pci/hotplug.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -Nru a/drivers/pci/hotplug.c b/drivers/pci/hotplug.c --- a/drivers/pci/hotplug.c Mon Feb 9 14:58:56 2004 +++ b/drivers/pci/hotplug.c Mon Feb 9 14:58:56 2004 @@ -116,7 +116,7 @@ } bus = wrapped_dev->dev->subordinate; - if(bus) { + if (bus) { memset(&wrapped_bus, 0, sizeof(struct pci_bus_wrapped)); wrapped_bus.bus = bus; @@ -130,8 +130,8 @@ * Every bus and every function is presented to a custom * function that can act upon it. */ -int pci_visit_dev (struct pci_visit *fn, struct pci_dev_wrapped *wrapped_dev, - struct pci_bus_wrapped *wrapped_parent) +int pci_visit_dev(struct pci_visit *fn, struct pci_dev_wrapped *wrapped_dev, + struct pci_bus_wrapped *wrapped_parent) { struct pci_dev* dev = wrapped_dev ? wrapped_dev->dev : NULL; int result = 0;