]> git.sur5r.net Git - u-boot/blobdiff - drivers/video/ld9040.c
gpio: omap_gpio: Convert to auto-alloc feature when DT is supported
[u-boot] / drivers / video / ld9040.c
index 23fe783c8844e7d5a994166279bf4d907293e9cb..93aea05ff847322921468c0dac8af76de76a989b 100644 (file)
@@ -1,19 +1,14 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * ld9040 AMOLED LCD panel driver.
  *
  * Copyright (C) 2012 Samsung Electronics
  * Donghwa Lee <dh09.lee@samsung.com>
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
 #include <spi.h>
 
-static const unsigned char SEQ_SWRESET[] = {
-       0x01,
-};
-
 static const unsigned char SEQ_USER_SETTING[] = {
        0xF0, 0x5A, 0x5A
 };
@@ -22,10 +17,6 @@ static const unsigned char SEQ_ELVSS_ON[] = {
        0xB1, 0x0D, 0x00, 0x16,
 };
 
-static const unsigned char SEQ_TEMP_SWIRE[] = {
-       0xB2, 0x06, 0x06, 0x06, 0x06,
-};
-
 static const unsigned char SEQ_GTCON[] = {
        0xF7, 0x09, 0x00, 0x00,
 };
@@ -46,10 +37,6 @@ static const unsigned char SEQ_GAMMA_CTRL[] = {
        0xFB, 0x02, 0x5A,
 };
 
-static const unsigned char SEQ_APON[] = {
-       0xF3, 0x00, 0x00, 0x00, 0x0A, 0x02,
-};
-
 static const unsigned char SEQ_DISPCTL[] = {
        0xF2, 0x02, 0x08, 0x08, 0x10, 0x10,
 };
@@ -66,10 +53,6 @@ static const unsigned char SEQ_SLPOUT[] = {
        0x11,
 };
 
-static const unsigned char SEQ_SLPIN[] = {
-       0x10,
-};
-
 static const unsigned char SEQ_DISPON[] = {
        0x29,
 };