From b6c12a129e22dadff4be67e5b0fe8993c888d6d8 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Sat, 20 Mar 2010 15:02:29 +0000 Subject: Submit FS#11065. Introduce a new system setting for en-/disabling the Line-out. For now only implemented on iPod Video. This allows to save power if the user does not use the player's Line-out. On iPod 5G the saving is ~0.5 mA. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25257 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/arm/ipod/powermgmt-ipod-pcf.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'firmware/target') diff --git a/firmware/target/arm/ipod/powermgmt-ipod-pcf.c b/firmware/target/arm/ipod/powermgmt-ipod-pcf.c index 5b8f974fda..95f5380b92 100644 --- a/firmware/target/arm/ipod/powermgmt-ipod-pcf.c +++ b/firmware/target/arm/ipod/powermgmt-ipod-pcf.c @@ -25,6 +25,7 @@ #include "powermgmt.h" #include "pcf5060x.h" #include "pcf50605.h" +#include "audiohw.h" const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] = { @@ -129,3 +130,11 @@ void accessory_supply_set(bool enable) } #endif + +#ifdef HAVE_LINEOUT_POWEROFF +void lineout_set(bool enable) +{ + /* Call audio hardware driver implementation */ + audiohw_enable_lineout(enable); +} +#endif -- cgit v1.2.3