From: Joe Perches Date: Mon, 27 Oct 2014 05:25:02 +0000 (-0700) Subject: mfd: wm8350-core: Fix probable mask then right shift defect X-Git-Tag: v3.19-rc1~182^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1753b40f5c97e0d0bf2f0a562603cfc592945a5e;p=platform%2Fkernel%2Flinux-exynos.git mfd: wm8350-core: Fix probable mask then right shift defect Precedence of & and >> is not the same and is not left to right. shift has higher precedence and should be done after the mask. Add parentheses around the mask. Signed-off-by: Joe Perches Acked-by: Charles Keepax Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/wm8350-core.c b/drivers/mfd/wm8350-core.c index 4ab527f..f5124a8 100644 --- a/drivers/mfd/wm8350-core.c +++ b/drivers/mfd/wm8350-core.c @@ -308,7 +308,7 @@ int wm8350_device_init(struct wm8350 *wm8350, int irq, goto err; } - mode = id2 & WM8350_CONF_STS_MASK >> 10; + mode = (id2 & WM8350_CONF_STS_MASK) >> 10; cust_id = id2 & WM8350_CUST_ID_MASK; chip_rev = (id2 & WM8350_CHIP_REV_MASK) >> 12; dev_info(wm8350->dev,