staging: unisys: refactor delete_device_glue()
Fix the function declaration so it is a single line, and fix CamelCase function parameter names: busNo => bus_no devNo => dev_no Signed-off-by: Bryan Thompson <bryan.thompson@unisys.com> Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3ee7441ff3
commit
419113c892
1 changed files with 5 additions and 6 deletions
|
@ -787,17 +787,16 @@ static int delete_bus_glue(u32 bus_no)
|
|||
return 1;
|
||||
}
|
||||
|
||||
static int
|
||||
delete_device_glue(u32 busNo, u32 devNo)
|
||||
static int delete_device_glue(u32 bus_no, u32 dev_no)
|
||||
{
|
||||
struct controlvm_message msg;
|
||||
|
||||
init_msg_header(&msg, CONTROLVM_DEVICE_DESTROY, 0, 0);
|
||||
msg.cmd.destroy_device.bus_no = busNo;
|
||||
msg.cmd.destroy_device.dev_no = devNo;
|
||||
msg.cmd.destroy_device.bus_no = bus_no;
|
||||
msg.cmd.destroy_device.dev_no = dev_no;
|
||||
if (destroy_device(&msg, NULL) != CONTROLVM_RESP_SUCCESS) {
|
||||
LOGERR("destroy_device failed. busNo=0x%x devNo=0x%x\n", busNo,
|
||||
devNo);
|
||||
LOGERR("destroy_device failed. bus_no=0x%x dev_no=0x%x\n",
|
||||
bus_no, dev_no);
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue