ChangeSet 1.1587.12.72, 2004/04/30 15:23:43-07:00, eike-hotplug@sf-tec.de [PATCH] SHPC PCI Hotplug: codingstyle fixes Some small coding style fixes for shpchp_core.c. drivers/pci/hotplug/shpchp_core.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff -Nru a/drivers/pci/hotplug/shpchp_core.c b/drivers/pci/hotplug/shpchp_core.c --- a/drivers/pci/hotplug/shpchp_core.c Mon May 17 16:58:23 2004 +++ b/drivers/pci/hotplug/shpchp_core.c Mon May 17 16:58:23 2004 @@ -84,10 +84,10 @@ .disable_slot = disable_slot, .get_power_status = get_power_status, .get_attention_status = get_attention_status, - .get_latch_status = get_latch_status, + .get_latch_status = get_latch_status, .get_adapter_status = get_adapter_status, - .get_max_bus_speed = get_max_bus_speed, - .get_cur_bus_speed = get_cur_bus_speed, + .get_max_bus_speed = get_max_bus_speed, + .get_cur_bus_speed = get_cur_bus_speed, }; /** @@ -218,7 +218,7 @@ rc = shpc_get_ctlr_slot_config(ctrl, &num_ctlr_slots, &first_device_num, &physical_slot_num, &updown, &flags); if (rc) { err("%s: get_ctlr_slot_config fail for b:d (%x:%x)\n", __FUNCTION__, ctrl->bus, ctrl->device); - return (-1); + return -1; } ctrl->num_slots = num_ctlr_slots; @@ -229,7 +229,7 @@ dbg("%s: num_slot(0x%x) 1st_dev(0x%x) psn(0x%x) updown(%d) for b:d (%x:%x)\n", __FUNCTION__, num_ctlr_slots, first_device_num, physical_slot_num, updown, ctrl->bus, ctrl->device); - return (0); + return 0; }