1
0
Fork 0
forked from len0rd/rockbox

imx233: more consistent debug screen

Change-Id: Ia6a869ec22734f95af2b453e01471b0656b7a273
This commit is contained in:
Amaury Pouly 2012-08-31 23:32:16 +02:00
parent 3a1ba755c6
commit c8e7964e81

View file

@ -299,8 +299,8 @@ bool dbg_hw_info_clkctrl(void)
#undef c #undef c
} }
int line = ARRAYLEN(dbg_clk) + 1; int line = ARRAYLEN(dbg_clk) + 1;
lcd_putsf(0, line, "auto slow: %d emi sync: %d", imx233_clkctrl_is_auto_slow_enabled(), lcd_putsf(0, line, "as: %d/%d emi sync: %d", imx233_clkctrl_is_auto_slow_enabled(),
imx233_clkctrl_is_emi_sync_enabled()); 1 << imx233_clkctrl_get_auto_slow_divisor(), imx233_clkctrl_is_emi_sync_enabled());
line++; line++;
lcd_putsf(0, line, "as monitor: "); lcd_putsf(0, line, "as monitor: ");
int x_off = 12; int x_off = 12;