diff options
author | Benjamin Romer <benjamin.romer@unisys.com> | 2015-03-16 18:58:18 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-23 21:53:50 +0100 |
commit | 6b59b31d69cdf44e2d0b6b6314f78ca6ebb31b7b (patch) | |
tree | 05bff1067cdba58c2e568208f4828c8d942f2eca | |
parent | staging: unisys: fix CamelCase in epilog functions (diff) | |
download | linux-6b59b31d69cdf44e2d0b6b6314f78ca6ebb31b7b.tar.xz linux-6b59b31d69cdf44e2d0b6b6314f78ca6ebb31b7b.zip |
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>
-rw-r--r-- | drivers/staging/unisys/visorchipset/visorchipset_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c index 4e74799ade89..fed675cd124b 100644 --- a/drivers/staging/unisys/visorchipset/visorchipset_main.c +++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c @@ -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); |