Message ID | 20200506120304.31550-1-geert+renesas@glider.be |
---|---|
State | New |
Headers | show |
Series | media: i2c: imx219: Drop <linux/clk-provider.h> and <linux/clkdev.h> | expand |
diff --git a/drivers/media/i2c/imx219.c b/drivers/media/i2c/imx219.c index cb03bdec1f9c8954..078f2093d881d7c2 100644 --- a/drivers/media/i2c/imx219.c +++ b/drivers/media/i2c/imx219.c @@ -15,8 +15,6 @@ */ #include <linux/clk.h> -#include <linux/clk-provider.h> -#include <linux/clkdev.h> #include <linux/delay.h> #include <linux/gpio/consumer.h> #include <linux/i2c.h>
The IMX219 camera driver is not a clock provider, but merely a clock consumer, and thus does not need to include <linux/clk-provider.h> and <linux/clkdev.h>. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- drivers/media/i2c/imx219.c | 2 -- 1 file changed, 2 deletions(-)