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
This commit is contained in:
Michael Sevakis 2007-07-14 11:20:31 +00:00
parent b51a20fb9b
commit 7d759f6b9c
23 changed files with 563 additions and 402 deletions

View file

@ -30,12 +30,12 @@
static bool powered = false;
bool radio_powered(void)
bool tuner_powered(void)
{
return powered;
}
bool radio_power(bool status)
bool tuner_power(bool status)
{
bool old_status = powered;
powered = status;