From 8653c0a5670529b32c0a4d72a704972eb413e14b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Fri, 5 Mar 2010 01:43:47 +0000 Subject: Sansa AMS: do not pretend we can power off the tuner git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25029 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/arm/as3525/power-as3525.c | 13 +++---------- 1 file 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 -- cgit v1.1