From: Erik Arfvidson <erik.arfvid...@unisys.com>

This patch fixes checkpatch's no space is necessary after a cast

Signed-off-by: Erik Arfvidson <erik.arfvid...@unisys.com>
Signed-off-by: Benjamin Romer <benjamin.ro...@unisys.com>
---
 drivers/staging/unisys/visorbus/visorchipset.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/unisys/visorbus/visorchipset.c 
b/drivers/staging/unisys/visorbus/visorchipset.c
index 164fb7b..5535073 100644
--- a/drivers/staging/unisys/visorbus/visorchipset.c
+++ b/drivers/staging/unisys/visorbus/visorchipset.c
@@ -397,7 +397,7 @@ parser_init_byte_stream(u64 addr, u32 bytes, bool local, 
bool *retry)
                        rc = NULL;
                        goto cleanup;
                }
-               p = __va((unsigned long) (addr));
+               p = __va((unsigned long)(addr));
                memcpy(ctx->data, p, bytes);
        } else {
                void *mapping;
@@ -525,7 +525,7 @@ parser_string_get(struct parser_context *ctx)
                return NULL;
        if (value_length > 0)
                memcpy(value, pscan, value_length);
-       ((u8 *) (value))[value_length] = '\0';
+       ((u8 *)(value))[value_length] = '\0';
        return value;
 }
 
@@ -815,7 +815,7 @@ controlvm_init_response(struct controlvm_message *msg,
        msg->hdr.payload_max_bytes = 0;
        if (response < 0) {
                msg->hdr.flags.failed = 1;
-               msg->hdr.completion_status = (u32) (-response);
+               msg->hdr.completion_status = (u32)(-response);
        }
 }
 
-- 
2.5.0

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to