diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-07-14 11:20:31 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-07-14 11:20:31 +0000 |
commit | 7d759f6b9ca96a4a64c71ac301eb59cb9702e74c (patch) | |
tree | fbaf5104716ccfed888c7d8506dbee15a881d4a2 /apps/debug_menu.c | |
parent | b51a20fb9b1cc57b813d1c0b90ad8c010b9eab84 (diff) |
Do some planned radio interface cleanup since adding in the LV24020LP.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13880 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r-- | apps/debug_menu.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 20dbf76b66..9c426c2efc 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1955,27 +1955,27 @@ static int radio_callback(int btn, struct gui_synclist *lists) "HW detected: yes"); #if (CONFIG_TUNER & LV24020LP) snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, - "CTRL_STAT: %02X", sanyo_get(RADIO_ALL) ); + "CTRL_STAT: %02X", lv24020lp_get(LV24020LP_CTRL_STAT) ); snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, - "RADIO_STAT: %02X", sanyo_get(RADIO_REG_STAT)); + "RADIO_STAT: %02X", lv24020lp_get(LV24020LP_REG_STAT)); snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, - "MSS_FM: %d kHz", sanyo_get(RADIO_MSS_FM) ); + "MSS_FM: %d kHz", lv24020lp_get(LV24020LP_MSS_FM) ); snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, - "MSS_IF: %d Hz", (sanyo_get(RADIO_MSS_IF) ) ); + "MSS_IF: %d Hz", (lv24020lp_get(LV24020LP_MSS_IF) ) ); snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, - "MSS_SD: %d Hz", (sanyo_get(RADIO_MSS_SD) ) ); + "MSS_SD: %d Hz", (lv24020lp_get(LV24020LP_MSS_SD) ) ); snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, - "if_set: %d Hz", (sanyo_get(RADIO_IF_SET) ) ); + "if_set: %d Hz", (lv24020lp_get(LV24020LP_IF_SET) ) ); snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, - "sd_set: %d Hz", (sanyo_get(RADIO_SD_SET) ) ); + "sd_set: %d Hz", (lv24020lp_get(LV24020LP_SD_SET) ) ); #endif #if (CONFIG_TUNER & S1A0903X01) snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, - "Samsung regs: %08X", samsung_get(RADIO_ALL)); + "Samsung regs: %08X", s1a0903x01_get(RADIO_ALL)); #endif #if (CONFIG_TUNER & TEA5767) - struct philips_dbg_info info; - philips_dbg_info(&info); + struct tea5767_dbg_info info; + tea5767_dbg_info(&info); snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, "Philips regs:"); snprintf(debug_list_messages[radio_lines++], DEBUG_MSG_LEN, " Read: %02X %02X %02X %02X %02X", |