diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2012-08-31 23:32:16 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2012-08-31 23:32:16 +0200 |
| commit | c8e7964e8118b7454d5549f5c229f6138d33eb8d (patch) | |
| tree | 4fcd9ce2f884674fc148b6cd0f4a9cc94ff4ea5b | |
| parent | 3a1ba755c6ea003141410facb62af04ccfb7252f (diff) | |
| download | rockbox-c8e7964e8118b7454d5549f5c229f6138d33eb8d.zip rockbox-c8e7964e8118b7454d5549f5c229f6138d33eb8d.tar.gz rockbox-c8e7964e8118b7454d5549f5c229f6138d33eb8d.tar.bz2 rockbox-c8e7964e8118b7454d5549f5c229f6138d33eb8d.tar.xz | |
imx233: more consistent debug screen
Change-Id: Ia6a869ec22734f95af2b453e01471b0656b7a273
| -rw-r--r-- | firmware/target/arm/imx233/debug-imx233.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/imx233/debug-imx233.c b/firmware/target/arm/imx233/debug-imx233.c index fdad03e..dc0a976 100644 --- a/firmware/target/arm/imx233/debug-imx233.c +++ b/firmware/target/arm/imx233/debug-imx233.c @@ -299,8 +299,8 @@ bool dbg_hw_info_clkctrl(void) #undef c } int line = ARRAYLEN(dbg_clk) + 1; - lcd_putsf(0, line, "auto slow: %d emi sync: %d", imx233_clkctrl_is_auto_slow_enabled(), - imx233_clkctrl_is_emi_sync_enabled()); + lcd_putsf(0, line, "as: %d/%d emi sync: %d", imx233_clkctrl_is_auto_slow_enabled(), + 1 << imx233_clkctrl_get_auto_slow_divisor(), imx233_clkctrl_is_emi_sync_enabled()); line++; lcd_putsf(0, line, "as monitor: "); int x_off = 12; |