Browse Source

greybus: fw-management: Replace double-tabs with space for structures

Reformat structures to use a single space instead of multiple tabs.

Reported-by: Greg Kroah-Hartman <gregkh@google.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Alex Elder <elder@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Viresh Kumar 9 years ago
parent
commit
e27f1da93f
1 changed files with 10 additions and 10 deletions
  1. 10 10
      drivers/staging/greybus/greybus_firmware.h

+ 10 - 10
drivers/staging/greybus/greybus_firmware.h

@@ -55,22 +55,22 @@
 
 /* IOCTL support */
 struct fw_mgmt_ioc_get_fw {
-	__u8			firmware_tag[GB_FIRMWARE_U_TAG_MAX_LEN];
-	__u16			major;
-	__u16			minor;
+	__u8 firmware_tag[GB_FIRMWARE_U_TAG_MAX_LEN];
+	__u16 major;
+	__u16 minor;
 } __attribute__ ((__packed__));
 
 struct fw_mgmt_ioc_intf_load_and_validate {
-	__u8			firmware_tag[GB_FIRMWARE_U_TAG_MAX_LEN];
-	__u8			load_method;
-	__u8			status;
-	__u16			major;
-	__u16			minor;
+	__u8 firmware_tag[GB_FIRMWARE_U_TAG_MAX_LEN];
+	__u8 load_method;
+	__u8 status;
+	__u16 major;
+	__u16 minor;
 } __attribute__ ((__packed__));
 
 struct fw_mgmt_ioc_backend_fw_update {
-	__u8			firmware_tag[GB_FIRMWARE_U_TAG_MAX_LEN];
-	__u8			status;
+	__u8 firmware_tag[GB_FIRMWARE_U_TAG_MAX_LEN];
+	__u8 status;
 } __attribute__ ((__packed__));
 
 #define FW_MGMT_IOCTL_BASE			'F'