From patchwork Thu Mar 31 01:09:10 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 8706811 Return-Path: X-Original-To: patchwork-linux-fbdev@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id E38EA9F36E for ; Thu, 31 Mar 2016 01:10:19 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 32D2820376 for ; Thu, 31 Mar 2016 01:10:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 67CD220374 for ; Thu, 31 Mar 2016 01:10:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751215AbcCaBKM (ORCPT ); Wed, 30 Mar 2016 21:10:12 -0400 Received: from kirsty.vergenet.net ([202.4.237.240]:38620 "EHLO kirsty.vergenet.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750997AbcCaBKK (ORCPT ); Wed, 30 Mar 2016 21:10:10 -0400 Received: from reginn.isobedori.kobe.vergenet.net (p2210-ipbfp1103kobeminato.hyogo.ocn.ne.jp [122.23.9.210]) by kirsty.vergenet.net (Postfix) with ESMTPA id 5646225B807; Thu, 31 Mar 2016 12:10:06 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=verge.net.au; s=mail; t=1459386606; bh=0tgKk5qX1B/ERAH2eRdH2zqCVVMxkDxe2L4dukvu0bs=; h=From:To:Cc:Subject:Date:From; b=pA9jn7gQILh94ILCmm5qBvfVrDIpT61WC6VbKUS/dLomwKSQsQLaa9mWiTxezSMix IxR+gIA/QiWmwGNMFEJEHczB3wAVdNwnyZivVrFL+/R7L5rZ0K//TDXjUOmuaS3x9x ElWtIFVKYce6yLqOsUd1hZAFUS6GWoVbpw/vAqeM= Received: by reginn.isobedori.kobe.vergenet.net (Postfix, from userid 7100) id C55A6940537; Thu, 31 Mar 2016 10:10:07 +0900 (JST) From: Simon Horman To: Jean-Christophe Plagniol-Villard , Tomi Valkeinen Cc: Geert Uytterhoeven , Laurent Pinchart , Magnus Damm , linux-fbdev@vger.kernel.org, linux-sh@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Simon Horman Subject: [PATCH] fbdev: sh_mipi_dsi: remove driver Date: Thu, 31 Mar 2016 10:09:10 +0900 Message-Id: <1459386550-4660-1-git-send-email-horms+renesas@verge.net.au> X-Mailer: git-send-email 2.1.4 Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org X-Spam-Status: No, score=-7.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Remove the sh_mipi_dsi driver as it appears to be unused since 9a9863987bf7 ("ARM: shmobile: Remove legacy SoC code for SH-Mobile AG5"). Signed-off-by: Simon Horman Acked-by: Geert Uytterhoeven --- Based on v4.6-rc1 --- drivers/video/Kconfig | 4 - drivers/video/fbdev/Kconfig | 1 - drivers/video/fbdev/Makefile | 1 - drivers/video/fbdev/sh_mipi_dsi.c | 587 -------------------------------------- include/video/sh_mipi_dsi.h | 59 ---- 5 files changed, 652 deletions(-) delete mode 100644 drivers/video/fbdev/sh_mipi_dsi.c delete mode 100644 include/video/sh_mipi_dsi.h diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index e0606c01e8ac..3c20af999893 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -8,10 +8,6 @@ menu "Graphics support" config HAVE_FB_ATMEL bool -config SH_MIPI_DSI - tristate - depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK - config SH_LCD_MIPI_DSI bool diff --git a/drivers/video/fbdev/Kconfig b/drivers/video/fbdev/Kconfig index 983280e8d93f..7d991cb9e78e 100644 --- a/drivers/video/fbdev/Kconfig +++ b/drivers/video/fbdev/Kconfig @@ -1993,7 +1993,6 @@ config FB_SH_MOBILE_LCDC select FB_SYS_FOPS select FB_DEFERRED_IO select FB_BACKLIGHT - select SH_MIPI_DSI if SH_LCD_MIPI_DSI ---help--- Frame buffer driver for the on-chip SH-Mobile LCD controller. diff --git a/drivers/video/fbdev/Makefile b/drivers/video/fbdev/Makefile index 65fb15075c8f..f6731867dd26 100644 --- a/drivers/video/fbdev/Makefile +++ b/drivers/video/fbdev/Makefile @@ -117,7 +117,6 @@ obj-$(CONFIG_FB_SM501) += sm501fb.o obj-$(CONFIG_FB_UDL) += udlfb.o obj-$(CONFIG_FB_SMSCUFX) += smscufx.o obj-$(CONFIG_FB_XILINX) += xilinxfb.o -obj-$(CONFIG_SH_MIPI_DSI) += sh_mipi_dsi.o obj-$(CONFIG_FB_SH_MOBILE_MERAM) += sh_mobile_meram.o obj-$(CONFIG_FB_SH_MOBILE_LCDC) += sh_mobile_lcdcfb.o obj-$(CONFIG_FB_OMAP) += omap/ diff --git a/drivers/video/fbdev/sh_mipi_dsi.c b/drivers/video/fbdev/sh_mipi_dsi.c deleted file mode 100644 index 8f6e8ff620d4..000000000000 --- a/drivers/video/fbdev/sh_mipi_dsi.c +++ /dev/null @@ -1,587 +0,0 @@ -/* - * Renesas SH-mobile MIPI DSI support - * - * Copyright (C) 2010 Guennadi Liakhovetski - * - * This is free software; you can redistribute it and/or modify - * it under the terms of version 2 of the GNU General Public License as - * published by the Free Software Foundation. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include