From patchwork Sun Nov 18 07:01:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Shiyan X-Patchwork-Id: 1760331 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 1094FDF280 for ; Sun, 18 Nov 2012 07:04:04 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TZysx-0001NX-VA; Sun, 18 Nov 2012 07:01:44 +0000 Received: from smtp29.i.mail.ru ([94.100.177.89]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TZysu-0001NE-7A for linux-arm-kernel@lists.infradead.org; Sun, 18 Nov 2012 07:01:41 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mail.ru; s=mail; h=Message-Id:Date:Subject:Cc:To:From; bh=PH5tqAVheXdREejnVULpTanEQvOuE+3nhqjmbCEmWD8=; b=vv20lAYQxleq8XLEwesxmZIIXgTnv/sDBHnRdPonIGLs6scmJPVhSPzg6/g/8ogioMpm1MnJbEung2Rl+zBjTTNUF5nsJsd3L/moxUbAanjbp3etRQWajh+8QT927tYV; Received: from [188.134.40.128] (port=35967 helo=shc.zet) by smtp29.i.mail.ru with esmtpa (envelope-from ) id 1TZysq-0001Te-DC; Sun, 18 Nov 2012 11:01:36 +0400 From: Alexander Shiyan To: linux-arm-kernel@lists.infradead.org Subject: [PATCH] Misc: ARM_CHAR_LCD: Permit the use of a driver on any ARM machine Date: Sun, 18 Nov 2012 11:01:31 +0400 Message-Id: <1353222091-17521-1-git-send-email-shc_work@mail.ru> X-Mailer: git-send-email 1.7.8.6 X-Spam: Not detected X-Mras: Ok X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121118_020140_591006_572C4CC1 X-CRM114-Status: GOOD ( 11.65 ) X-Spam-Score: -2.0 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (shc_work[at]mail.ru) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Greg Kroah-Hartman , Alexander Shiyan , Arnd Bergmann X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org arm-charlcd driver can be used on any ARM machine, so dependency of PLAT_VERSATILE is removed. Signed-off-by: Alexander Shiyan --- drivers/misc/Kconfig | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index b151b7c..83d8d44 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -434,13 +434,15 @@ config VMWARE_BALLOON config ARM_CHARLCD bool "ARM Ltd. Character LCD Driver" - depends on PLAT_VERSATILE + depends on ARM + default n help - This is a driver for the character LCD found on the ARM Ltd. - Versatile and RealView Platform Baseboards. It doesn't do - very much more than display the text "ARM Linux" on the first - line and the Linux version on the second line, but that's - still useful. + This is a driver for the on-board character LCD found on some + ARM reference boards, for example on Versatile or RealView Platform + Baseboards. This is basically an Hitachi HD44780 LCD. + Driver doesn't do very much more than display the text "ARM Linux" + on the first line and the Linux version on the second line, but + that's still useful. config BMP085 bool