From: Thierry Reding Date: Mon, 20 Jul 2015 07:58:09 +0000 (+0200) Subject: pwm: sysfs: Remove unnecessary padding X-Git-Tag: v4.3-rc1~31^2~10 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=412820dd536fe2d01a35f0d68982ea225ec255b3;p=karo-tx-linux.git pwm: sysfs: Remove unnecessary padding Padding initializers so that assignment operators align is bound to lead to inconsistencies or churn. Single spaces around the assignment is just fine. Signed-off-by: Thierry Reding --- diff --git a/drivers/pwm/sysfs.c b/drivers/pwm/sysfs.c index fbfc9e903230..c472772f00a7 100644 --- a/drivers/pwm/sysfs.c +++ b/drivers/pwm/sysfs.c @@ -312,9 +312,9 @@ static struct attribute *pwm_chip_attrs[] = { ATTRIBUTE_GROUPS(pwm_chip); static struct class pwm_class = { - .name = "pwm", - .owner = THIS_MODULE, - .dev_groups = pwm_chip_groups, + .name = "pwm", + .owner = THIS_MODULE, + .dev_groups = pwm_chip_groups, }; static int pwmchip_sysfs_match(struct device *parent, const void *data)