From 42f77d4eb027afed4f4ef80f10c16112c2b7fe2b Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Fri, 31 Oct 2008 00:16:42 +0000 Subject: Abstract the PortalPlayer AS3514 handling with an "ascodec" API - inspired by the wmcodec API used with the Wolfson codecs. The intention is to implement this API for the AS3525 and then share code with the Sansa V2 ports. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18940 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/arm/philips/sa9200/backlight-sa9200.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'firmware/target/arm/philips/sa9200/backlight-sa9200.c') diff --git a/firmware/target/arm/philips/sa9200/backlight-sa9200.c b/firmware/target/arm/philips/sa9200/backlight-sa9200.c index 33342d19f1..b3984ca9ad 100644 --- a/firmware/target/arm/philips/sa9200/backlight-sa9200.c +++ b/firmware/target/arm/philips/sa9200/backlight-sa9200.c @@ -23,7 +23,7 @@ #include "system.h" #include "lcd.h" #include "backlight.h" -#include "i2c-pp.h" +#include "ascodec.h" #include "as3514.h" static unsigned short backlight_brightness = DEFAULT_BRIGHTNESS_SETTING; @@ -46,12 +46,12 @@ void _backlight_on(void) #ifdef HAVE_LCD_ENABLE lcd_enable(true); /* power on lcd + visible display */ #endif - pp_i2c_send(AS3514_I2C_ADDR, AS3514_DCDC15, backlight_brightness); + ascodec_write(AS3514_DCDC15, backlight_brightness); } void _backlight_off(void) { - pp_i2c_send(AS3514_I2C_ADDR, AS3514_DCDC15, 0x0); + ascodec_write(AS3514_DCDC15, 0x0); #ifdef HAVE_LCD_ENABLE lcd_enable(false); /* power off visible display */ #endif -- cgit v1.2.3