summaryrefslogtreecommitdiff
path: root/drivers/pwm
diff options
context:
space:
mode:
authorThierry Reding <thierry.reding@gmail.com>2015-07-20 07:58:09 (GMT)
committerThierry Reding <thierry.reding@gmail.com>2015-07-27 10:03:38 (GMT)
commit412820dd536fe2d01a35f0d68982ea225ec255b3 (patch)
treed0cfad3f80a11383af1e496d9945899ef7163ab1 /drivers/pwm
parent5a063d87e97df28ca0b00807bc4d6fa11c5a5107 (diff)
downloadlinux-412820dd536fe2d01a35f0d68982ea225ec255b3.tar.xz
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 <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm')
-rw-r--r--drivers/pwm/sysfs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pwm/sysfs.c b/drivers/pwm/sysfs.c
index fbfc9e9..c472772 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)