staging: unisys: fix spaces after typecasts in visorchipset_main.c
Just remove a couple of extra spaces after typecasts. Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2836c6a8de
commit
6b59b31d69
@ -791,7 +791,7 @@ bus_responder(enum controlvm_id cmd_id, ulong bus_no, int response)
|
||||
|
||||
if (p->pending_msg_hdr.id == CONTROLVM_INVALID)
|
||||
return; /* no controlvm response needed */
|
||||
if (p->pending_msg_hdr.id != (u32) cmd_id)
|
||||
if (p->pending_msg_hdr.id != (u32)cmd_id)
|
||||
return;
|
||||
controlvm_respond(&p->pending_msg_hdr, response);
|
||||
p->pending_msg_hdr.id = CONTROLVM_INVALID;
|
||||
@ -850,7 +850,7 @@ device_responder(enum controlvm_id cmd_id, ulong bus_no, ulong dev_no,
|
||||
if (p->pending_msg_hdr.id == CONTROLVM_INVALID)
|
||||
return; /* no controlvm response needed */
|
||||
|
||||
if (p->pending_msg_hdr.id != (u32) cmd_id)
|
||||
if (p->pending_msg_hdr.id != (u32)cmd_id)
|
||||
return;
|
||||
|
||||
controlvm_respond(&p->pending_msg_hdr, response);
|
||||
|
Loading…
Reference in New Issue
Block a user