Commit b1f8fa94 authored by Rolf Eike Beer's avatar Rolf Eike Beer Committed by Deepak Saxena

[PATCH] SHPC PCI Hotplug: codingstyle fixes

Some small coding style fixes for shpchp_core.c.
parent 8be9fee4
......@@ -218,7 +218,7 @@ static int get_ctlr_slot_config(struct controller *ctrl)
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 @@ static int get_ctlr_slot_config(struct controller *ctrl)
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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment