Removed all spaces before casts in parser.c Signed-off-by: Jeffrey <Jeffrey.Brown@xxxxxxxxxx> --- drivers/staging/unisys/visorchipset/parser.c | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/parser.c b/drivers/staging/unisys/visorchipset/parser.c index 6f82d55..fa2a678 100644 --- a/drivers/staging/unisys/visorchipset/parser.c +++ b/drivers/staging/unisys/visorchipset/parser.c @@ -88,11 +88,11 @@ parser_init_guts(u64 addr, u32 bytes, BOOL isLocal, if (addr > virt_to_phys(high_memory - 1)) { ERRDRV("%s - bad local address (0x%-16.16Lx for %lu)", __func__, - (unsigned long long) addr, (ulong) bytes); + (unsigned long long)addr, (ulong)bytes); rc = NULL; goto Away; } - p = __va((ulong) (addr)); + p = __va((ulong)(addr)); memcpy(ctx->data, p, bytes); } else { rgn = visor_memregion_create(addr, bytes); @@ -114,15 +114,15 @@ parser_init_guts(u64 addr, u32 bytes, BOOL isLocal, if (phdr->total_length != bytes) { ERRDRV("%s - bad total length %lu (should be %lu)", __func__, - (ulong) (phdr->total_length), (ulong) (bytes)); + (ulong)(phdr->total_length), (ulong)(bytes)); rc = NULL; goto Away; } if (phdr->total_length < phdr->header_length) { ERRDRV("%s - total length < header length (%lu < %lu)", __func__, - (ulong) (phdr->total_length), - (ulong) (phdr->header_length)); + (ulong)(phdr->total_length), + (ulong)(phdr->header_length)); rc = NULL; goto Away; } @@ -130,7 +130,7 @@ parser_init_guts(u64 addr, u32 bytes, BOOL isLocal, sizeof(struct spar_controlvm_parameters_header)) { ERRDRV("%s - header is too small (%lu < %lu)", __func__, - (ulong) (phdr->header_length), + (ulong)(phdr->header_length), (ulong)(sizeof( struct spar_controlvm_parameters_header))); rc = NULL; @@ -192,7 +192,7 @@ parser_bytestream_get(struct parser_context_tag *ctx, ulong *nbytes) return NULL; if (nbytes) *nbytes = ctx->param_bytes; - return (void *) ctx->data; + return (void *)ctx->data; } uuid_le @@ -407,7 +407,7 @@ parser_param_get(struct parser_context_tag *ctx, char *nam, int namesize) if (value == NULL) return NULL; memcpy(value, pscan, value_length); - ((u8 *) (value))[value_length] = '\0'; + ((u8 *)(value))[value_length] = '\0'; pscan += orig_value_length; nscan -= orig_value_length; @@ -475,6 +475,6 @@ parser_string_get(struct parser_context_tag *ctx) return NULL; if (value_length > 0) memcpy(value, pscan, value_length); - ((u8 *) (value))[value_length] = '\0'; + ((u8 *)(value))[value_length] = '\0'; return value; } -- 1.7.1 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel