From: Benjamin Romer Date: Mon, 16 Mar 2015 17:58:18 +0000 (-0400) Subject: staging: unisys: fix spaces after typecasts in visorchipset_main.c X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=6b59b31d69cdf44e2d0b6b6314f78ca6ebb31b7b;p=openwrt%2Fstaging%2Fblogic.git staging: unisys: fix spaces after typecasts in visorchipset_main.c Just remove a couple of extra spaces after typecasts. Signed-off-by: Benjamin Romer Signed-off-by: Greg Kroah-Hartman --- 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);