1
0
Fork 0

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>
hifive-unleashed-5.1
Sachin Kamat 2012-11-25 12:24:55 +05:30 committed by Bryan Wu
parent b40b0c17d7
commit dcba91056f
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
struct led_pwm_data {
struct led_classdev cdev;
struct pwm_device *pwm;
unsigned int active_low;
unsigned int active_low;
unsigned int period;
};