From patchwork Sun Dec 27 16:21:08 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Oreste Salerno X-Patchwork-Id: 7923821 Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 7739A9F350 for ; Sun, 27 Dec 2015 16:26:32 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id A9BF62026C for ; Sun, 27 Dec 2015 16:26:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 78B7620268 for ; Sun, 27 Dec 2015 16:26:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752019AbbL0Q03 (ORCPT ); Sun, 27 Dec 2015 11:26:29 -0500 Received: from mail3.tomtom.com ([85.90.76.132]:20882 "EHLO mail3.tomtom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751948AbbL0Q02 (ORCPT ); Sun, 27 Dec 2015 11:26:28 -0500 X-Greylist: delayed 310 seconds by postgrey-1.27 at vger.kernel.org; Sun, 27 Dec 2015 11:26:28 EST Received: from NLSRVWP-EXC01.ttg.global (10.96.72.11) by nlsrvwp-tmg01.ttg.global (10.96.64.21) with Microsoft SMTP Server (TLS) id 14.3.169.1; Sun, 27 Dec 2015 17:21:30 +0100 Received: from NLSRVWP-EXN11.ttg.global (10.98.64.12) by NLSRVWP-EXC01.ttg.global (10.96.72.11) with Microsoft SMTP Server (TLS) id 14.3.235.1; Sun, 27 Dec 2015 17:21:17 +0100 Received: from nl1lxl-107192.tomtomgroup.com (10.98.250.94) by NLSRVWP-EXN11.ttg.global (10.98.64.12) with Microsoft SMTP Server (TLS) id 15.0.1076.9; Sun, 27 Dec 2015 17:21:16 +0100 From: Oreste Salerno To: CC: , , , , , , , , Subject: [PATCH 1/3] Input: cyttsp - remove unused irq_gpio from platform_data Date: Sun, 27 Dec 2015 17:21:08 +0100 Message-ID: <5718d3609e7bf3670b5160df1abd9aa117dea6e6.1451231697.git.oreste.salerno@tomtom.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: References: MIME-Version: 1.0 X-Originating-IP: [10.98.250.94] X-ClientProxiedBy: NLSRVWP-EXN02.ttg.global (10.98.64.19) To NLSRVWP-EXN11.ttg.global (10.98.64.12) Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, 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 This field is not being used and the irq is anyway passed via the 'irq' parameter to cyttsp_probe. Signed-off-by: Oreste Salerno --- include/linux/input/cyttsp.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/input/cyttsp.h b/include/linux/input/cyttsp.h index 5af7c66..d7c2520 100644 --- a/include/linux/input/cyttsp.h +++ b/include/linux/input/cyttsp.h @@ -51,7 +51,6 @@ struct cyttsp_platform_data { int (*init)(void); void (*exit)(void); char *name; - s16 irq_gpio; u8 *bl_keys; };