From 780f79e7a4028a57e4bf591539a540dbfae2496d Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Fri, 10 Nov 2006 20:26:01 +0000 Subject: Removed the Gmini 120 and Gmini SP code. These ports are dead, unfortunately. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11504 a1c6a512-1295-4272-9138-f99709370657 --- firmware/backlight.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'firmware/backlight.c') diff --git a/firmware/backlight.c b/firmware/backlight.c index c7d1add605..8a07197426 100644 --- a/firmware/backlight.c +++ b/firmware/backlight.c @@ -73,8 +73,6 @@ static inline void __backlight_on(void) or_b(0x40, &PAIORH); #elif CONFIG_BACKLIGHT == BL_PA14_HI /* Ondio */ or_b(0x40, &PADRH); /* drive it high */ -#elif CONFIG_BACKLIGHT == BL_GMINI - P1 |= 0x10; #endif } @@ -87,8 +85,6 @@ static inline void __backlight_off(void) and_b(~0x40, &PAIORH); /* let it float (up) */ #elif CONFIG_BACKLIGHT == BL_PA14_HI /* Ondio */ and_b(~0x40, &PADRH); /* drive it low */ -#elif CONFIG_BACKLIGHT == BL_GMINI - P1 &= ~0x10; #endif } #endif @@ -568,8 +564,6 @@ void backlight_init(void) #elif CONFIG_BACKLIGHT == BL_PA14_LO || CONFIG_BACKLIGHT == BL_PA14_HI PACR1 &= ~0x3000; /* Set PA14 (backlight control) to GPIO */ or_b(0x40, &PAIORH); /* ..and output */ -#elif CONFIG_BACKLIGHT == BL_GMINI - P1CON |= 0x10; /* P1.4 C-MOS output mode */ #endif backlight_on(); #ifdef HAVE_REMOTE_LCD -- cgit v1.2.3