From 083fd9d00b8e4ae3f4bca0cfe0dc43f6c1569f72 Mon Sep 17 00:00:00 2001 From: Dongjin Kim Date: Wed, 7 Dec 2022 15:19:40 +0900 Subject: [PATCH] Revert "ODROID-COMMON: gpu/drm: Add new Tiny DRM driver with Ili9488" This reverts commit 20a18f4890097653a4e4bb90a8f68477265e7982. --- drivers/gpu/drm/tiny/Kconfig | 13 - drivers/gpu/drm/tiny/Makefile | 1 - drivers/gpu/drm/tiny/ili9488_pio.c | 366 ----------------------------- 3 files changed, 380 deletions(-) delete mode 100644 drivers/gpu/drm/tiny/ili9488_pio.c diff --git a/drivers/gpu/drm/tiny/Kconfig b/drivers/gpu/drm/tiny/Kconfig index e293eece083d6d..f6889f649bc182 100644 --- a/drivers/gpu/drm/tiny/Kconfig +++ b/drivers/gpu/drm/tiny/Kconfig @@ -161,19 +161,6 @@ config TINYDRM_ILI9486 If M is selected the module will be called ili9486. -config TINYDRM_ILI9488_PIO - tristate "DRM support for ILI9488 display panels (8bit PIO)" - depends on DRM - select DRM_KMS_HELPER - select DRM_KMS_CMA_HELPER - select DRM_MIPI_DBI - select BACKLIGHT_CLASS_DEVICE - help - DRM driver for th following Ilitek ILI9488 panels: - * Hardkernel 3.5" 480x320 TFT (HKTFT 3.5") - - If M is selected the module will be called hktft35. - config TINYDRM_MI0283QT tristate "DRM support for MI0283QT" depends on DRM && SPI diff --git a/drivers/gpu/drm/tiny/Makefile b/drivers/gpu/drm/tiny/Makefile index c553556734d637..76dde89a044b7d 100644 --- a/drivers/gpu/drm/tiny/Makefile +++ b/drivers/gpu/drm/tiny/Makefile @@ -12,7 +12,6 @@ obj-$(CONFIG_TINYDRM_ILI9163) += ili9163.o obj-$(CONFIG_TINYDRM_ILI9225) += ili9225.o obj-$(CONFIG_TINYDRM_ILI9341) += ili9341.o obj-$(CONFIG_TINYDRM_ILI9486) += ili9486.o -obj-$(CONFIG_TINYDRM_ILI9488_PIO) += ili9488_pio.o obj-$(CONFIG_TINYDRM_MI0283QT) += mi0283qt.o obj-$(CONFIG_TINYDRM_REPAPER) += repaper.o obj-$(CONFIG_TINYDRM_ST7586) += st7586.o diff --git a/drivers/gpu/drm/tiny/ili9488_pio.c b/drivers/gpu/drm/tiny/ili9488_pio.c deleted file mode 100644 index f3a0b1fb885a96..00000000000000 --- a/drivers/gpu/drm/tiny/ili9488_pio.c +++ /dev/null @@ -1,366 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0-or-later -/* - * DRM driver for Hardkernel 3.5 ISP TFT display - * - * Copyright 2021 Dongjin Kim - * - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include