mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 14:56:54 -04:00
staging: unisys: fix spaces after cast visorchipset.c
This patch fixes checkpatch's no space is necessary after a cast Signed-off-by: Erik Arfvidson <erik.arfvidson@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:
committed by
Greg Kroah-Hartman
parent
d1e0863701
commit
0e7bf2f449
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user