summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-ipod.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-ipod.c')
-rw-r--r--firmware/drivers/lcd-ipod.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/drivers/lcd-ipod.c b/firmware/drivers/lcd-ipod.c
index d1d63b9911..4df47f9f20 100644
--- a/firmware/drivers/lcd-ipod.c
+++ b/firmware/drivers/lcd-ipod.c
@@ -105,8 +105,13 @@ static void lcd_cmd_and_data(int cmd, int data_lo, int data_hi)
105 * LCD init 105 * LCD init
106 **/ 106 **/
107void lcd_init_device(void){ 107void lcd_init_device(void){
108#ifdef APPLE_IPODMINI
109 lcd_cmd_and_data(0x1, 0x0, 0xd);
110#else
108 /* driver output control - 160x128 */ 111 /* driver output control - 160x128 */
109 lcd_cmd_and_data(0x1, 0x1, 0xf); 112 lcd_cmd_and_data(0x1, 0x1, 0xf);
113#endif
114
110 lcd_cmd_and_data(0x5, 0x0, 0x10); 115 lcd_cmd_and_data(0x5, 0x0, 0x10);
111 116
112#ifdef APPLE_IPOD4G 117#ifdef APPLE_IPOD4G