[media] smiapp: The sensor only needs a single clock, name may be NULL
The SMIA compatible sensors only need a single clock. Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
f73108eb8e
commit
575ea5b3a4
|
@ -2482,7 +2482,7 @@ static int smiapp_registered(struct v4l2_subdev *subdev)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!sensor->platform_data->set_xclk) {
|
if (!sensor->platform_data->set_xclk) {
|
||||||
sensor->ext_clk = devm_clk_get(&client->dev, "ext_clk");
|
sensor->ext_clk = devm_clk_get(&client->dev, NULL);
|
||||||
if (IS_ERR(sensor->ext_clk)) {
|
if (IS_ERR(sensor->ext_clk)) {
|
||||||
dev_err(&client->dev, "could not get clock\n");
|
dev_err(&client->dev, "could not get clock\n");
|
||||||
return PTR_ERR(sensor->ext_clk);
|
return PTR_ERR(sensor->ext_clk);
|
||||||
|
|
Loading…
Reference in New Issue