From patchwork Tue Jul 12 06:00:41 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: axel lin X-Patchwork-Id: 967212 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p6C60qf0000826 for ; Tue, 12 Jul 2011 06:00:52 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753985Ab1GLGAu (ORCPT ); Tue, 12 Jul 2011 02:00:50 -0400 Received: from mail-gx0-f174.google.com ([209.85.161.174]:61688 "EHLO mail-gx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753973Ab1GLGAu (ORCPT ); Tue, 12 Jul 2011 02:00:50 -0400 Received: by gxk21 with SMTP id 21so1802146gxk.19 for ; Mon, 11 Jul 2011 23:00:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=subject:from:to:cc:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=XfT4FuI2h0g1NWRJvDlgeh4fAcNV1jOCvGUwJSC2gFs=; b=vPbTcWoVLFEP55BTFFZjb3RS69iwvVgCEmvu6V//xnIGr5aarQu4wnAWeiFZv4WhoN Bg7aoHMcBdIe6iPZPGglxJE16SkV/urpVReENSpWN78pEZ+V6+dWUPF/JOZ9g7LNBqPZ dCiqYtWcTP96/DsWlwNEDUMY4DmUVy+o/f4e4= Received: by 10.91.177.7 with SMTP id e7mr4891972agp.74.1310450449428; Mon, 11 Jul 2011 23:00:49 -0700 (PDT) Received: from [218.172.239.112] (218-172-239-112.dynamic.hinet.net [218.172.239.112]) by mx.google.com with ESMTPS id j65sm7349131yhm.12.2011.07.11.23.00.46 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 11 Jul 2011 23:00:48 -0700 (PDT) Subject: [PATCH 1/2] Input: cy8ctmg110_ts - constify i2c_device_id table From: Axel Lin To: linux-kernel@vger.kernel.org Cc: Dmitry Torokhov , Samuli Konttila , linux-input@vger.kernel.org Date: Tue, 12 Jul 2011 14:00:41 +0800 Message-ID: <1310450441.13592.1.camel@phoenix> Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Tue, 12 Jul 2011 06:00:52 +0000 (UTC) Signed-off-by: Axel Lin --- drivers/input/touchscreen/cy8ctmg110_ts.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/input/touchscreen/cy8ctmg110_ts.c b/drivers/input/touchscreen/cy8ctmg110_ts.c index a93c5c2..4481cc5 100644 --- a/drivers/input/touchscreen/cy8ctmg110_ts.c +++ b/drivers/input/touchscreen/cy8ctmg110_ts.c @@ -328,7 +328,7 @@ static int __devexit cy8ctmg110_remove(struct i2c_client *client) return 0; } -static struct i2c_device_id cy8ctmg110_idtable[] = { +static const struct i2c_device_id cy8ctmg110_idtable[] = { { CY8CTMG110_DRIVER_NAME, 1 }, { } };