From: Javier Martinez Canillas Date: Mon, 14 Sep 2015 17:38:39 +0000 (-0700) Subject: Input: mms114 - remove unneded semicolons X-Git-Tag: v4.14-rc1~3851^2~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=86a39bffc4e94f80527c14fe00a3acb432910ef3;p=platform%2Fkernel%2Flinux-rpi.git Input: mms114 - remove unneded semicolons They aren't needed and are just creating null statements so remove it. Signed-off-by: Javier Martinez Canillas Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/touchscreen/mms114.c b/drivers/input/touchscreen/mms114.c index 7cce876..1fafc9f 100644 --- a/drivers/input/touchscreen/mms114.c +++ b/drivers/input/touchscreen/mms114.c @@ -394,12 +394,12 @@ static struct mms114_platform_data *mms114_parse_dt(struct device *dev) if (of_property_read_u32(np, "x-size", &pdata->x_size)) { dev_err(dev, "failed to get x-size property\n"); return NULL; - }; + } if (of_property_read_u32(np, "y-size", &pdata->y_size)) { dev_err(dev, "failed to get y-size property\n"); return NULL; - }; + } of_property_read_u32(np, "contact-threshold", &pdata->contact_threshold);