diff options
author | Taras Kondratiuk <taras@ti.com> | 2013-08-06 15:18:51 +0300 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-08-28 11:44:58 -0400 |
commit | e633ac019642689e3a2dd95bd644b3a10c7bbbb4 (patch) | |
tree | 6a48e83781717740ea88bc6af07eb92b060a4682 /board/ti/sdp4430 | |
parent | 81aee9723d03846736635d43507cbf0be5cd21d8 (diff) | |
download | u-boot-imx-e633ac019642689e3a2dd95bd644b3a10c7bbbb4.zip u-boot-imx-e633ac019642689e3a2dd95bd644b3a10c7bbbb4.tar.gz u-boot-imx-e633ac019642689e3a2dd95bd644b3a10c7bbbb4.tar.bz2 |
ARM: OMAP4460: sdp: Limit TPS mux config to 4460
TPS mux config is 4460 specific, so it should be limited to 4460 only.
Signed-off-by: Taras Kondratiuk <taras@ti.com>
Diffstat (limited to 'board/ti/sdp4430')
-rw-r--r-- | board/ti/sdp4430/sdp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/ti/sdp4430/sdp.c b/board/ti/sdp4430/sdp.c index b20ca9e..79270a9 100644 --- a/board/ti/sdp4430/sdp.c +++ b/board/ti/sdp4430/sdp.c @@ -65,7 +65,8 @@ void set_muxconf_regs_essential(void) sizeof(wkup_padconf_array_essential) / sizeof(struct pad_conf_entry)); - if (omap_revision() >= OMAP4460_ES1_0) + if ((omap_revision() >= OMAP4460_ES1_0) && + (omap_revision() < OMAP4470_ES1_0)) do_set_mux((*ctrl)->control_padconf_wkup_base, wkup_padconf_array_essential_4460, sizeof(wkup_padconf_array_essential_4460) / |