staging: vchiq_core: fix indentation in vchiq_log_dump_mem
authorStefan Wahren <stefan.wahren@i2se.com>
Sun, 23 Jan 2022 20:02:06 +0000 (21:02 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 25 Jan 2022 15:30:15 +0000 (16:30 +0100)
This align the indentation in the var declaration of vchiq_log_dump_mem to
the other code.

Reviewed-by: Nicolas Saenz Julienne <nsaenz@kernel.org>
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Link: https://lore.kernel.org/r/1642968143-19281-2-git-send-email-stefan.wahren@i2se.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c

index 7fe20d4..2cbbbb6 100644 (file)
@@ -3666,10 +3666,10 @@ enum vchiq_status vchiq_send_remote_use_active(struct vchiq_state *state)
 
 void vchiq_log_dump_mem(const char *label, u32 addr, const void *void_mem, size_t num_bytes)
 {
-       const u8  *mem = void_mem;
-       size_t          offset;
-       char            line_buf[100];
-       char           *s;
+       const u8 *mem = void_mem;
+       size_t offset;
+       char line_buf[100];
+       char *s;
 
        while (num_bytes > 0) {
                s = line_buf;