From: Javier Martinez Canillas Date: Mon, 26 Oct 2015 08:45:01 +0000 (-0700) Subject: Input: snvs_pwrkey - remove duplicated semicolon X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=9ace41adb46e36e0709983702230d3602210c171;p=deliverable%2Flinux.git Input: snvs_pwrkey - remove duplicated semicolon Remove the unneded semicolon since it is clearly a typo error. Signed-off-by: Javier Martinez Canillas Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/keyboard/snvs_pwrkey.c b/drivers/input/keyboard/snvs_pwrkey.c index 78fd24ca3813..9adf13a5864a 100644 --- a/drivers/input/keyboard/snvs_pwrkey.c +++ b/drivers/input/keyboard/snvs_pwrkey.c @@ -110,8 +110,7 @@ static int imx_snvs_pwrkey_probe(struct platform_device *pdev) if (!pdata) return -ENOMEM; - pdata->snvs = syscon_regmap_lookup_by_phandle(np, "regmap");; - + pdata->snvs = syscon_regmap_lookup_by_phandle(np, "regmap"); if (!pdata->snvs) { dev_err(&pdev->dev, "Can't get snvs syscon\n"); return -ENODEV;