From 41b54d216f33a0c54006cb1066d92cc7d9756a22 Mon Sep 17 00:00:00 2001 From: "jinhyung.jo" Date: Tue, 29 Apr 2014 16:36:38 +0900 Subject: [PATCH] Revert "maru_fb : Add a framebuffer device for Tizen emulator" This reverts commit 7fafa6cf5c264b9fd55bc009373498f087fabf5b. Remove maru_fb driver, no more used in tizen emulator. From now on, VIGS device is used. Change-Id: Ib915e145cfca09b51a9a5c9c5121e75253941eca Signed-off-by: Jinhyung Jo --- arch/x86/configs/i386_tizen_emul_defconfig | 1 - drivers/maru/Kconfig | 4 - drivers/maru/Makefile | 1 - drivers/maru/maru_fb.c | 2121 -------------------- drivers/maru/maru_fb.h | 170 -- 5 files changed, 2297 deletions(-) delete mode 100644 drivers/maru/maru_fb.c delete mode 100644 drivers/maru/maru_fb.h diff --git a/arch/x86/configs/i386_tizen_emul_defconfig b/arch/x86/configs/i386_tizen_emul_defconfig index 5bccbf560814..6e5529b599fc 100644 --- a/arch/x86/configs/i386_tizen_emul_defconfig +++ b/arch/x86/configs/i386_tizen_emul_defconfig @@ -3082,7 +3082,6 @@ CONFIG_IOMMU_SUPPORT=y # CONFIG_FMC is not set CONFIG_MARU=y CONFIG_MARU_VIRTIO_TOUCHSCREEN=y -CONFIG_MARU_FB=y CONFIG_MARU_CAMERA=y CONFIG_MARU_BACKLIGHT=y CONFIG_MARU_OVERLAY=y diff --git a/drivers/maru/Kconfig b/drivers/maru/Kconfig index 4fd7b20a532a..197fe3ea1794 100644 --- a/drivers/maru/Kconfig +++ b/drivers/maru/Kconfig @@ -6,10 +6,6 @@ config MARU_VIRTIO_TOUCHSCREEN tristate "MARU Virtio Touchscreen Driver" depends on MARU != n -config MARU_FB - tristate "MARU framebuffer driver" - depends on MARU != n - config MARU_CAMERA tristate "MARU Camera Driver" depends on MARU != n && VIDEO_DEV && VIDEO_V4L2 diff --git a/drivers/maru/Makefile b/drivers/maru/Makefile index df7ca774fc0f..a233379a3d84 100644 --- a/drivers/maru/Makefile +++ b/drivers/maru/Makefile @@ -1,5 +1,4 @@ obj-$(CONFIG_MARU_VIRTIO_TOUCHSCREEN) += maru_virtio_touchscreen.o -obj-$(CONFIG_MARU_FB) += maru_fb.o obj-$(CONFIG_MARU_CAMERA) += maru_camera.o obj-$(CONFIG_MARU_BACKLIGHT) += maru_bl.o obj-$(CONFIG_MARU_OVERLAY) += maru_overlay.o diff --git a/drivers/maru/maru_fb.c b/drivers/maru/maru_fb.c deleted file mode 100644 index a3a7eb4b518b..000000000000 --- a/drivers/maru/maru_fb.c +++ /dev/null @@ -1,2121 +0,0 @@ -/* - * Maru framebuffer device driver - * Based on driver/video/uvesafb.c: - * - * Copyright (C) 2011 Samsung Electronics Co., Ltd. All rights reserved. - * - * Contact: - * Jinhyung Jo - * GiWoong Kim - * YeongKyoon Lee - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - * Contributors: - * - S-Core Co., Ltd - * - */ - -/* - * A framebuffer driver for VBE 2.0+ compliant video cards - * - * (c) 2007 Michal Januszewski - * Loosely based upon the vesafb driver. - * - */ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include