media: dw9714: Remove useless error message

If probe fails, the kernel will print the error code. There's no need to
driver to do that.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
这个提交包含在:
Sakari Ailus
2018-10-05 17:19:38 -04:00
提交者 Mauro Carvalho Chehab
父节点 f9a0b14240
当前提交 1c55ecab31

查看文件

@@ -171,7 +171,7 @@ static int dw9714_probe(struct i2c_client *client)
err_cleanup:
v4l2_ctrl_handler_free(&dw9714_dev->ctrls_vcm);
media_entity_cleanup(&dw9714_dev->sd.entity);
dev_err(&client->dev, "Probe failed: %d\n", rval);
return rval;
}