]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
backlight: atmel-pwm-bl: fix checkpatch warning
authorJingoo Han <jg1.han@samsung.com>
Thu, 25 Oct 2012 01:14:56 +0000 (12:14 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 31 Oct 2012 05:49:49 +0000 (16:49 +1100)
This patch fixes the checkpatch warning as below:

WARNING: quoted string split across lines

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/video/backlight/atmel-pwm-bl.c

index df1cbb7ef6ca0370551904b190ba968315ee92c7..de5e5e74e2a70531a03d8204c282df6cc0d25332 100644 (file)
@@ -106,10 +106,9 @@ static int atmel_pwm_bl_init_pwm(struct atmel_pwm_bl *pwmbl)
        pwm_channel_writel(&pwmbl->pwmc, PWM_CPRD,
                        pwmbl->pdata->pwm_compare_max);
 
-       dev_info(&pwmbl->pdev->dev, "Atmel PWM backlight driver "
-                       "(%lu Hz)\n", pwmbl->pwmc.mck /
-                       pwmbl->pdata->pwm_compare_max /
-                       (1 << prescale));
+       dev_info(&pwmbl->pdev->dev, "Atmel PWM backlight driver (%lu Hz)\n",
+               pwmbl->pwmc.mck / pwmbl->pdata->pwm_compare_max /
+               (1 << prescale));
 
        return pwm_channel_enable(&pwmbl->pwmc);
 }