summaryrefslogtreecommitdiff
path: root/drivers/staging/unisys/visorbus/visorbus_main.c
diff options
context:
space:
mode:
authorZachary Dremann <dremann@gmail.com>2017-06-30 15:43:24 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-07-16 08:41:00 +0200
commitb372fee1d60fb44996d833f69a6146e8717ab44d (patch)
tree83616e44486ccefd4f789d6b5c0df28a6c78e6d9 /drivers/staging/unisys/visorbus/visorbus_main.c
parent35709e0f900fd574092329521b5723fb6262b07f (diff)
staging: unisys: visorbus: Indent struct assignment correctly
Several structure initializations all had their members indented with 2 tabs instead of one. Remove the extra tabs. Signed-off-by: Zachary Dremann <dremann@gmail.com> Signed-off-by: David Kershner <david.kershner@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys/visorbus/visorbus_main.c')
-rw-r--r--drivers/staging/unisys/visorbus/visorbus_main.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/drivers/staging/unisys/visorbus/visorbus_main.c b/drivers/staging/unisys/visorbus/visorbus_main.c
index 075e817526e7..d29f9ae8ede1 100644
--- a/drivers/staging/unisys/visorbus/visorbus_main.c
+++ b/drivers/staging/unisys/visorbus/visorbus_main.c
@@ -240,23 +240,23 @@ static ssize_t typename_show(struct device *dev, struct device_attribute *attr,
static DEVICE_ATTR_RO(typename);
static struct attribute *channel_attrs[] = {
- &dev_attr_physaddr.attr,
- &dev_attr_nbytes.attr,
- &dev_attr_clientpartition.attr,
- &dev_attr_typeguid.attr,
- &dev_attr_zoneguid.attr,
- &dev_attr_typename.attr,
- NULL
+ &dev_attr_physaddr.attr,
+ &dev_attr_nbytes.attr,
+ &dev_attr_clientpartition.attr,
+ &dev_attr_typeguid.attr,
+ &dev_attr_zoneguid.attr,
+ &dev_attr_typename.attr,
+ NULL
};
static struct attribute_group channel_attr_grp = {
- .name = "channel",
- .attrs = channel_attrs,
+ .name = "channel",
+ .attrs = channel_attrs,
};
static const struct attribute_group *visorbus_channel_groups[] = {
- &channel_attr_grp,
- NULL
+ &channel_attr_grp,
+ NULL
};
/* end implementation of specific channel attributes */
@@ -331,22 +331,22 @@ static ssize_t channel_id_show(struct device *dev,
static DEVICE_ATTR_RO(channel_id);
static struct attribute *dev_attrs[] = {
- &dev_attr_partition_handle.attr,
- &dev_attr_partition_guid.attr,
- &dev_attr_partition_name.attr,
- &dev_attr_channel_addr.attr,
- &dev_attr_channel_bytes.attr,
- &dev_attr_channel_id.attr,
- NULL
+ &dev_attr_partition_handle.attr,
+ &dev_attr_partition_guid.attr,
+ &dev_attr_partition_name.attr,
+ &dev_attr_channel_addr.attr,
+ &dev_attr_channel_bytes.attr,
+ &dev_attr_channel_id.attr,
+ NULL
};
static struct attribute_group dev_attr_grp = {
- .attrs = dev_attrs,
+ .attrs = dev_attrs,
};
static const struct attribute_group *visorbus_groups[] = {
- &dev_attr_grp,
- NULL
+ &dev_attr_grp,
+ NULL
};
/*