[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1358861996-27194-2-git-send-email-peter.ujfalusi@ti.com>
Date: Tue, 22 Jan 2013 14:39:53 +0100
From: Peter Ujfalusi <peter.ujfalusi@...com>
To: Richard Purdie <rpurdie@...ys.net>
CC: Grant Likely <grant.likely@...retlab.ca>,
Rob Landley <rob@...dley.net>,
Thierry Reding <thierry.reding@...onic-design.de>,
Florian Tobias Schandinat <FlorianSchandinat@....de>,
Andrew Morton <akpm@...ux-foundation.org>,
<devicetree-discuss@...ts.ozlabs.org>, <linux-doc@...r.kernel.org>,
<linux-kernel@...r.kernel.org>, <linux-fbdev@...r.kernel.org>
Subject: [PATCH 1/4] pwm_backlight: Fix PWM levels support in non DT case
It is expected that board files would have:
static unsigned int bl_levels[] = { 0, 50, 100, 150, 200, 250, };
static struct platform_pwm_backlight_data bl_data = {
.levels = bl_levels,
.max_brightness = ARRAY_SIZE(bl_levels),
.dft_brightness = 4,
.pwm_period_ns = 7812500,
};
In this case the max_brightness would be out of range in the levels array.
Decrement the received max_brightness in every case (DT or non DT) when the
levels has been provided.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@...com>
---
drivers/video/backlight/pwm_bl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/video/backlight/pwm_bl.c b/drivers/video/backlight/pwm_bl.c
index 069983c..f0d6854 100644
--- a/drivers/video/backlight/pwm_bl.c
+++ b/drivers/video/backlight/pwm_bl.c
@@ -142,7 +142,6 @@ static int pwm_backlight_parse_dt(struct device *dev,
}
data->dft_brightness = value;
- data->max_brightness--;
}
/*
@@ -202,6 +201,7 @@ static int pwm_backlight_probe(struct platform_device *pdev)
}
if (data->levels) {
+ data->max_brightness--;
max = data->levels[data->max_brightness];
pb->levels = data->levels;
} else
--
1.8.1.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists