From: Lad Prabhakar Date: Mon, 19 Sep 2022 14:33:50 +0000 (+0100) Subject: media: i2c: ov5645: Drop fetching the clk reference by name X-Git-Tag: v6.2-rc1~125^2~251^2~42 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9084e2c8617a63c478b48810ff7a8985de55f308;p=tomoyo%2Ftomoyo-test1.git media: i2c: ov5645: Drop fetching the clk reference by name The OV5645 sensor has a single clock source, so just drop fetching the clk reference by name. This is in preparation to drop the "clock-names" property from the DT binding. Suggested-by: Laurent Pinchart Signed-off-by: Lad Prabhakar Reviewed-by: Laurent Pinchart Signed-off-by: Sakari Ailus --- diff --git a/drivers/media/i2c/ov5645.c b/drivers/media/i2c/ov5645.c index 81e4e87e1821..47451238ca05 100644 --- a/drivers/media/i2c/ov5645.c +++ b/drivers/media/i2c/ov5645.c @@ -1090,7 +1090,7 @@ static int ov5645_probe(struct i2c_client *client) } /* get system clock (xclk) */ - ov5645->xclk = devm_clk_get(dev, "xclk"); + ov5645->xclk = devm_clk_get(dev, NULL); if (IS_ERR(ov5645->xclk)) { dev_err(dev, "could not get xclk"); return PTR_ERR(ov5645->xclk);