From patchwork Thu Sep 5 08:20:30 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 2853972 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 021DB9F494 for ; Thu, 5 Sep 2013 08:26:52 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E36C520257 for ; Thu, 5 Sep 2013 08:26:50 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id CCFEB201BA for ; Thu, 5 Sep 2013 08:26:49 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 001F2E634B for ; Thu, 5 Sep 2013 01:26:48 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org X-Greylist: delayed 301 seconds by postgrey-1.32 at gabe; Thu, 05 Sep 2013 01:26:10 PDT Received: from jacques.telenet-ops.be (jacques.telenet-ops.be [195.130.132.50]) by gabe.freedesktop.org (Postfix) with ESMTP id 8443EE5D57 for ; Thu, 5 Sep 2013 01:26:09 -0700 (PDT) Received: from ayla.of.borg ([84.193.72.141]) by jacques.telenet-ops.be with bizsmtp id MLM21m02m32ts5g0JLM3TN; Thu, 05 Sep 2013 10:21:08 +0200 Received: from geert by ayla.of.borg with local (Exim 4.76) (envelope-from ) id 1VHUnx-000227-Rw; Thu, 05 Sep 2013 10:20:41 +0200 From: Geert Uytterhoeven To: David Herrmann , "H. Peter Anvin" Subject: [PATCH] video/drm: Drop superfluous "select VT_HW_CONSOLE_BINDING" Date: Thu, 5 Sep 2013 10:20:30 +0200 Message-Id: <1378369230-7786-1-git-send-email-geert@linux-m68k.org> X-Mailer: git-send-email 1.7.9.5 Cc: linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Geoff Levand , Geert Uytterhoeven X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org X-Spam-Status: No, score=-6.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, 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 commit 765d5b9c2b72f5b99722cdfcf4bf8f88c556cf92 ("fbdev: fbcon: select VT_HW_CONSOLE_BINDING") made FRAMEBUFFER_CONSOLE always select VT_HW_CONSOLE_BINDING, but forgot to remove select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE from the individual drivers' sections that already did this before. Signed-off-by: Geert Uytterhoeven Reviewed-by: David Herrmann Signed-off-by: Inki Dae --- drivers/gpu/drm/exynos/Kconfig | 1 - drivers/video/Kconfig | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/gpu/drm/exynos/Kconfig b/drivers/gpu/drm/exynos/Kconfig index 772c62a..1344d34 100644 --- a/drivers/gpu/drm/exynos/Kconfig +++ b/drivers/gpu/drm/exynos/Kconfig @@ -5,7 +5,6 @@ config DRM_EXYNOS select FB_CFB_FILLRECT select FB_CFB_COPYAREA select FB_CFB_IMAGEBLIT - select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE help Choose this option if you have a Samsung SoC EXYNOS chipset. If M is selected the module will be called exynosdrm. diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 9788340..f60e3fa 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -2174,7 +2174,6 @@ config FB_PS3 select FB_SYS_COPYAREA select FB_SYS_IMAGEBLIT select FB_SYS_FOPS - select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE ---help--- Include support for the virtual frame buffer in the PS3 platform.