summaryrefslogtreecommitdiff
path: root/uisimulator/common/fmradio.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/common/fmradio.c')
-rw-r--r--uisimulator/common/fmradio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/uisimulator/common/fmradio.c b/uisimulator/common/fmradio.c
index 851c11bcb5..372fd10b38 100644
--- a/uisimulator/common/fmradio.c
+++ b/uisimulator/common/fmradio.c
@@ -30,7 +30,7 @@ static bool mono = false;
30static bool powered = false; 30static bool powered = false;
31#endif 31#endif
32 32
33int radio_set(int setting, int value) 33int tuner_set(int setting, int value)
34{ 34{
35 switch(setting) 35 switch(setting)
36 { 36 {
@@ -59,7 +59,7 @@ int radio_set(int setting, int value)
59 return 1; 59 return 1;
60} 60}
61 61
62int radio_get(int setting) 62int tuner_get(int setting)
63{ 63{
64 int val = 0; 64 int val = 0;
65 65
@@ -86,7 +86,7 @@ int radio_get(int setting)
86} 86}
87 87
88#ifdef HAVE_TUNER_PWR_CTRL 88#ifdef HAVE_TUNER_PWR_CTRL
89bool radio_power(bool status) 89bool tuner_power(bool status)
90{ 90{
91 bool oldstatus = powered; 91 bool oldstatus = powered;
92 powered = status; 92 powered = status;