[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1380703183-19921-1-git-send-email-gshark.jeong@gmail.com>
Date: Wed, 2 Oct 2013 17:39:43 +0900
From: Daniel Jeong <gshark.jeong@...il.com>
To: Andrew Morton <akpm@...ux-foundation.org>,
Jingoo Han <jg1.han@...sung.com>
Cc: <fengguang.wu@...el.com>, Johannes Weiner <hannes@...xchg.org>,
<kbuild-all@...org>, <linux-fbdev@...r.kernel.org>,
<linux-kernel@...r.kernel.org>,
Daniel Jeong <gshark.jeong@...il.com>
Subject: [PATCH] backlight: lm3630: fix sparse warning.
This patch is to fix sparse warning due to mixing different enum type.
Signed-off-by: Daniel Jeong <gshark.jeong@...il.com>
---
drivers/video/backlight/lm3630a_bl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/video/backlight/lm3630a_bl.c b/drivers/video/backlight/lm3630a_bl.c
index cf40cc8..1a76235 100644
--- a/drivers/video/backlight/lm3630a_bl.c
+++ b/drivers/video/backlight/lm3630a_bl.c
@@ -90,8 +90,8 @@ static int lm3630a_chip_init(struct lm3630a_chip *pchip)
/* set current B */
rval |= lm3630a_write(pchip, REG_I_B, 0x1F);
/* set control */
- rval |=
- lm3630a_write(pchip, REG_CTRL, pdata->leda_ctrl | pdata->ledb_ctrl);
+ rval |= lm3630a_update(pchip, REG_CTRL, 0x14, pdata->leda_ctrl);
+ rval |= lm3630a_update(pchip, REG_CTRL, 0x0B, pdata->ledb_ctrl);
usleep_range(1000, 2000);
/* set brightness A and B */
rval |= lm3630a_write(pchip, REG_BRT_A, pdata->leda_init_brt);
--
1.7.9.5
--
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