浏览代码

Input: snvs_pwrkey - drop input_free_device call if input_register_device fails

Current code uses devm_input_allocate_device() so don't explicitly call
input_free_device if input_register_device fails.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Axel Lin 9 年之前
父节点
当前提交
d095c500fd
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      drivers/input/keyboard/snvs_pwrkey.c

+ 0 - 1
drivers/input/keyboard/snvs_pwrkey.c

@@ -168,7 +168,6 @@ static int imx_snvs_pwrkey_probe(struct platform_device *pdev)
 	error = input_register_device(input);
 	if (error < 0) {
 		dev_err(&pdev->dev, "failed to register input device\n");
-		input_free_device(input);
 		return error;
 	}