From: Jingoo Han Date: Tue, 22 Jan 2013 05:58:07 +0000 (-0800) Subject: leds: pca9532: fix suspect code indent for conditional statements X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=962363cedae26c99201b015c6f0f342313b629e4;p=linux-beck.git leds: pca9532: fix suspect code indent for conditional statements Fixed the checkpatch warning as below: WARNING: suspect code indent for conditional statements (8, 8) Signed-off-by: Jingoo Han Signed-off-by: Bryan Wu --- diff --git a/drivers/leds/leds-pca9532.c b/drivers/leds/leds-pca9532.c index 43d08df6e8be..0c597bdd23f9 100644 --- a/drivers/leds/leds-pca9532.c +++ b/drivers/leds/leds-pca9532.c @@ -186,7 +186,7 @@ static int pca9532_set_blink(struct led_classdev *led_cdev, int err = 0; if (*delay_on == 0 && *delay_off == 0) { - /* led subsystem ask us for a blink rate */ + /* led subsystem ask us for a blink rate */ *delay_on = 1000; *delay_off = 1000; }