From patchwork Thu Jul 15 18:43:54 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kulikov Vasiliy X-Patchwork-Id: 112292 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o6FIjAAV007642 for ; Thu, 15 Jul 2010 18:45:10 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934189Ab0GOSod (ORCPT ); Thu, 15 Jul 2010 14:44:33 -0400 Received: from mail-ey0-f174.google.com ([209.85.215.174]:35888 "EHLO mail-ey0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934208Ab0GOSob (ORCPT ); Thu, 15 Jul 2010 14:44:31 -0400 Received: by eya25 with SMTP id 25so259679eya.19 for ; Thu, 15 Jul 2010 11:44:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=EpCaP3QRKwr5lCkWyZYPXnNLGQJioQSI3Dkb09i++GQ=; b=A8eTg1AgbTo1ocI1xspPP5GFqDciTDHQxMGZDi3TXxU401CGBKeLicu8Tof9m1QGqu BFi/upJFBw79jjdor7y+d8RfcQyR2v6dZo3PgZMhqTzHYRvT106is1fm4+JbVl5asGa8 AnHp77HpgSHOmpEb870IDonGK0kWv9J3WXhTQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=obOQKbPcMcg4EB61ygPu5WXbpOdK8kC/t6utVGdkVhiMv7vONOROniHAplInS1tuHg sPxGFgMEqft5FsUL8KThkyaI6rxxJJlUKofak/MNXUb0ES8pI0m/WKh+HFF/YB/FLu55 GZGlL5G+ewWB3bBOyrR58Q5mA18qHuF1Ppw9o= Received: by 10.213.31.208 with SMTP id z16mr3290583ebc.14.1279219467897; Thu, 15 Jul 2010 11:44:27 -0700 (PDT) Received: from localhost ([213.87.80.236]) by mx.google.com with ESMTPS id a48sm10368247eei.19.2010.07.15.11.44.13 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 15 Jul 2010 11:44:27 -0700 (PDT) From: Kulikov Vasiliy To: kernel-janitors@vger.kernel.org Cc: Dmitry Torokhov , Samuel Ortiz , Luotao Fu , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 2/8] touchscreen: fix sign bug Date: Thu, 15 Jul 2010 22:43:54 +0400 Message-Id: <1279219435-12128-1-git-send-email-segooon@gmail.com> X-Mailer: git-send-email 1.7.0.4 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.3 (demeter.kernel.org [140.211.167.41]); Thu, 15 Jul 2010 18:45:11 +0000 (UTC) diff --git a/drivers/input/touchscreen/stmpe-ts.c b/drivers/input/touchscreen/stmpe-ts.c index 77f4374..656148e 100644 --- a/drivers/input/touchscreen/stmpe-ts.c +++ b/drivers/input/touchscreen/stmpe-ts.c @@ -269,7 +269,7 @@ static int __devinit stmpe_input_probe(struct platform_device *pdev) struct input_dev *idev; struct stmpe_ts_platform_data *ts_pdata = NULL; int ret = 0; - unsigned int ts_irq; + int ts_irq; ts_irq = platform_get_irq_byname(pdev, "FIFO_TH"); if (ts_irq < 0)