From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752700AbbCXJ1k (ORCPT ); Tue, 24 Mar 2015 05:27:40 -0400 Received: from mail-pd0-f180.google.com ([209.85.192.180]:35223 "EHLO mail-pd0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752189AbbCXJ1D (ORCPT ); Tue, 24 Mar 2015 05:27:03 -0400 From: Sudip Mukherjee To: Willy Tarreau , Greg Kroah-Hartman Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Sudip Mukherjee , Subject: [PATCH v2 2/2] staging: panel: fix lcd type in module parameters Date: Tue, 24 Mar 2015 14:56:33 +0530 Message-Id: <1427189193-7984-2-git-send-email-sudipm.mukherjee@gmail.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1427189193-7984-1-git-send-email-sudipm.mukherjee@gmail.com> References: <1427189193-7984-1-git-send-email-sudipm.mukherjee@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org with reference to the previous patch of the series, fixed the lcd type in module parameters. Cc: # 2.6.32+ Signed-off-by: Sudip Mukherjee --- v2: it was not in v1. might not apply properly to old versions, some reordering was done in commit <98e0e762e> drivers/staging/panel/panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/panel/panel.c b/drivers/staging/panel/panel.c index 4724bef..ea54fb4 100644 --- a/drivers/staging/panel/panel.c +++ b/drivers/staging/panel/panel.c @@ -500,7 +500,7 @@ MODULE_PARM_DESC(keypad_type, static int lcd_type = NOT_SET; module_param(lcd_type, int, 0000); MODULE_PARM_DESC(lcd_type, - "LCD type: 0=none, 1=old //, 2=serial ks0074, 3=hantronix //, 4=nexcom //, 5=compiled-in"); + "LCD type: 0=none, 1=compiled-in, 2=old, 3=serial ks0074, 4=hantronix, 5=nexcom"); static int lcd_height = NOT_SET; module_param(lcd_height, int, 0000); -- 1.8.1.2