Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

leds: leds-pwm: Fix checkpatch warning

Fixes the following checkpatch warning:
WARNING: please, no space before tabs
FILE: leds/leds-pwm.c:29:
^Iunsigned int ^I^Iactive_low;$

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Bryan Wu <cooloney@gmail.com>

authored by

Sachin Kamat and committed by
Bryan Wu
dcba9105 b40b0c17

+1 -1
+1 -1
drivers/leds/leds-pwm.c
··· 26 26 struct led_pwm_data { 27 27 struct led_classdev cdev; 28 28 struct pwm_device *pwm; 29 - unsigned int active_low; 29 + unsigned int active_low; 30 30 unsigned int period; 31 31 }; 32 32