diff options
author | Christian Riesch <christian.riesch@omicron.at> | 2011-11-19 00:45:44 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-11-29 15:43:40 +0100 |
commit | 581a811c3fefd771f0eedb7af3b60ac86518a56b (patch) | |
tree | 9545a69626e574244c96eeb4c5918665b046be2d /board/davinci/da8xxevm/hawkboard.c | |
parent | eccb213e9da75a181cd2baac16ab3deda42e2796 (diff) | |
download | u-boot-imx-581a811c3fefd771f0eedb7af3b60ac86518a56b.zip u-boot-imx-581a811c3fefd771f0eedb7af3b60ac86518a56b.tar.gz u-boot-imx-581a811c3fefd771f0eedb7af3b60ac86518a56b.tar.bz2 |
hawkboard: Replace HAWKBOARD_KICK{0, 1}_UNLOCK defines
This patch replaces the HAWKBOARD_KICK{0,1}_UNLOCK defines by
DV_SYSCFG_KICK{0,1}_UNLOCK.
The kick register values are not hawkboard specific but may be used
for all davinci boards. In commit f3c149d6c6e5ba8dd72baa86fe527837e4fb0e9a
new defines for these values wer introduced.
Signed-off-by: Christian Riesch <christian.riesch@omicron.at>
Cc: Syed Mohammed Khasim <sm.khasim@gmail.com>
Cc: Sughosh Ganu <urwithsughosh@gmail.com>
Cc: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'board/davinci/da8xxevm/hawkboard.c')
-rw-r--r-- | board/davinci/da8xxevm/hawkboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/davinci/da8xxevm/hawkboard.c b/board/davinci/da8xxevm/hawkboard.c index f34830e..9d4e238 100644 --- a/board/davinci/da8xxevm/hawkboard.c +++ b/board/davinci/da8xxevm/hawkboard.c @@ -47,8 +47,8 @@ int board_early_init_f(void) /* * Kick Registers need to be set to allow access to Pin Mux registers */ - writel(HAWKBOARD_KICK0_UNLOCK, &davinci_syscfg_regs->kick0); - writel(HAWKBOARD_KICK1_UNLOCK, &davinci_syscfg_regs->kick1); + writel(DV_SYSCFG_KICK0_UNLOCK, &davinci_syscfg_regs->kick0); + writel(DV_SYSCFG_KICK1_UNLOCK, &davinci_syscfg_regs->kick1); /* set cfgchip3 to select mii */ writel(readl(&davinci_syscfg_regs->cfgchip3) & |