diff options
author | Peter Korsgaard <peter.korsgaard@barco.com> | 2012-10-18 01:21:09 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-25 11:31:36 -0700 |
commit | e363426e999b786ee4791f49d90ae84a3210f7b8 (patch) | |
tree | 31e9706c53d440ded06ae037a8da0babd8111a89 /board/ti/am335x/mux.c | |
parent | c50cce275866b4b0e36e1102041d7ee7aa24ee28 (diff) |
am33xx: move ti i2c baseboard header handling to board/ti/am335x/
The i2c header is specific to ti(-derived) boards, and not generic for all
am335x boards.
Signed-off-by: Peter Korsgaard <peter.korsgaard@barco.com>
[trini: Make re-apply with rtc32k_enable() applied]
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/ti/am335x/mux.c')
-rw-r--r-- | board/ti/am335x/mux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/ti/am335x/mux.c b/board/ti/am335x/mux.c index 80becd5c7a..82bb9fd3ba 100644 --- a/board/ti/am335x/mux.c +++ b/board/ti/am335x/mux.c @@ -18,6 +18,7 @@ #include <asm/arch/hardware.h> #include <asm/io.h> #include <i2c.h> +#include "board.h" #define MUX_CFG(value, offset) \ __raw_writel(value, (CTRL_BASE + offset)); |