diff mbox

[U-Boot,v2] i2c: at91_i2c: Fix the wrong include file

Message ID 1473734431-22074-1-git-send-email-wenyou.yang@atmel.com
State Awaiting Upstream
Delegated to: Heiko Schocher
Headers show

Commit Message

Wenyou Yang Sept. 13, 2016, 2:40 a.m. UTC
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>
---

Changes in v2:
 - Collect Reviewed-by tag.

 drivers/i2c/at91_i2c.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/drivers/i2c/at91_i2c.c b/drivers/i2c/at91_i2c.c
index 8e9c3ad..d71f75c 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>