aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm
diff options
context:
space:
mode:
authorLothar Waßmann <LW@KARO-electronics.de>2012-12-05 16:34:41 +0100
committerThierry Reding <thierry.reding@avionic-design.de>2012-12-06 08:52:04 +0100
commit983290b0625628448ea8907243e3cbceda0a8d74 (patch)
treea328c72a201256c95880871e4b4f57e2939d9544 /drivers/pwm
parentpwm: Export of_pwm_xlate_with_flags() (diff)
downloadlinux-dev-983290b0625628448ea8907243e3cbceda0a8d74.tar.xz
linux-dev-983290b0625628448ea8907243e3cbceda0a8d74.zip
pwm: i.MX: eliminate build warning
compiling the i.MX pwm driver produces the following warning: |drivers/pwm/pwm-imx.c: In function 'imx_pwm_probe': |drivers/pwm/pwm-imx.c:281:7: warning: assignment discards qualifiers from pointer target type Apply a 'const' attribute to the affected variable declaration. Signed-off-by: Lothar Waßmann <LW@KARO-electronics.de> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Diffstat (limited to 'drivers/pwm')
-rw-r--r--drivers/pwm/pwm-imx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-imx.c b/drivers/pwm/pwm-imx.c
index 8a5d3ae2946a..fe3fbdbc86aa 100644
--- a/drivers/pwm/pwm-imx.c
+++ b/drivers/pwm/pwm-imx.c
@@ -235,7 +235,7 @@ static int __devinit imx_pwm_probe(struct platform_device *pdev)
{
const struct of_device_id *of_id =
of_match_device(imx_pwm_dt_ids, &pdev->dev);
- struct imx_pwm_data *data;
+ const struct imx_pwm_data *data;
struct imx_chip *imx;
struct resource *r;
int ret = 0;