From: Wenyou Yang <wenyou.yang@atmel.com> Date: Tue, 13 Sep 2016 02:40:31 +0000 (+0800) Subject: i2c: at91_i2c: Fix the wrong include file X-Git-Tag: v2025.01-rc5-pxa1908~8602 X-Git-Url: http://git.dujemihanovic.xyz/html/index.html?a=commitdiff_plain;h=76062b9cdbe756eff75b99beaf6e94e8bb059431;p=u-boot.git i2c: at91_i2c: Fix the wrong include file Since the 'clk_client.h' doesn't exist, it should be 'clk.h'. Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by: Simon Glass <sjg@chromium.org> --- diff --git a/drivers/i2c/at91_i2c.c b/drivers/i2c/at91_i2c.c index 8e9c3ad552..d71f75c5fa 100644 --- a/drivers/i2c/at91_i2c.c +++ b/drivers/i2c/at91_i2c.c @@ -8,7 +8,7 @@ #include <asm/io.h> #include <common.h> -#include <clk_client.h> +#include <clk.h> #include <dm.h> #include <errno.h> #include <fdtdec.h>