diff options
| -rw-r--r-- | firmware/target/arm/as3525/power-as3525.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/firmware/target/arm/as3525/power-as3525.c b/firmware/target/arm/as3525/power-as3525.c index 2fbeab0..3570d7c 100644 --- a/firmware/target/arm/as3525/power-as3525.c +++ b/firmware/target/arm/as3525/power-as3525.c @@ -54,21 +54,14 @@ void ide_power_enable(bool on) } #if CONFIG_TUNER -static bool tuner_on = false; - bool tuner_power(bool status) { - if (status != tuner_on) - { - tuner_on = status; - status = !status; - } - - return status; + (void) status; + return true; } bool tuner_powered(void) { - return tuner_on; /* No debug info */ + return true; } #endif |