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>
This commit is contained in:
Viresh Kumar 2016-05-16 07:49:45 +05:30 committed by Greg Kroah-Hartman
parent 5319a889ea
commit e27f1da93f
1 changed files with 10 additions and 10 deletions

View File

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