diff options
author | Wenyou Yang | 2016-09-13 10:40:31 +0800 |
---|---|---|
committer | Heiko Schocher | 2016-09-13 06:58:54 +0200 |
commit | 76062b9cdbe756eff75b99beaf6e94e8bb059431 (patch) | |
tree | dbf3651eb887e0602ba96c3d1c1a7e85f3f92f78 /drivers/i2c | |
parent | 21d4b7d4e1786a2ccbcc5b304cf714e3778e6183 (diff) |
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>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/at91_i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/at91_i2c.c b/drivers/i2c/at91_i2c.c index 8e9c3ad5523..d71f75c5faa 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> |