From patchwork Mon Oct 9 22:16:05 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Grygorii Strashko X-Patchwork-Id: 823539 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=linux-gpio-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ti.com header.i=@ti.com header.b="Xf6mP40X"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3y9vjj6q4Zz9t4V for ; Tue, 10 Oct 2017 09:16:57 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755181AbdJIWQp (ORCPT ); Mon, 9 Oct 2017 18:16:45 -0400 Received: from fllnx209.ext.ti.com ([198.47.19.16]:12576 "EHLO fllnx209.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754176AbdJIWQd (ORCPT ); Mon, 9 Oct 2017 18:16:33 -0400 Received: from dflxv15.itg.ti.com ([128.247.5.124]) by fllnx209.ext.ti.com (8.15.1/8.15.1) with ESMTP id v99MGCS4024861; Mon, 9 Oct 2017 17:16:12 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1507587372; bh=G9qHjUNHO6XyuH+P/kDqSW4HRmrISII2LPbd6s2l5RU=; h=From:To:CC:Subject:Date; b=Xf6mP40XE3N9nZNRVzCm2L5oLUYSwtNTqdJR9w5oRS4ypv/oKLSIge3+Z2WiN+EI8 6BEf56BHZmdMxUvWGEiXpa1Ejc/XFql3HNJF2j4laJGosSgx8PRHH0q5FK7HlCgRRQ /Vv7HTnoM+xzvybciZmxWVyxFDVoZngMNawmADSw= Received: from DFLE100.ent.ti.com (dfle100.ent.ti.com [10.64.6.21]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id v99MG7Zc012668; Mon, 9 Oct 2017 17:16:07 -0500 Received: from DFLE105.ent.ti.com (10.64.6.26) by DFLE100.ent.ti.com (10.64.6.21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P256) id 15.1.845.34; Mon, 9 Oct 2017 17:16:07 -0500 Received: from dflp32.itg.ti.com (10.64.6.15) by DFLE105.ent.ti.com (10.64.6.26) with Microsoft SMTP Server (version=TLS1_0, cipher=TLS_RSA_WITH_AES_256_CBC_SHA) id 15.1.845.34 via Frontend Transport; Mon, 9 Oct 2017 17:16:07 -0500 Received: from legion.dal.design.ti.com (legion.dal.design.ti.com [128.247.22.53]) by dflp32.itg.ti.com (8.14.3/8.13.8) with ESMTP id v99MG7BD020808; Mon, 9 Oct 2017 17:16:07 -0500 Received: from localhost (uda0226610.dhcp.ti.com [128.247.59.147]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id v99MG6306054; Mon, 9 Oct 2017 17:16:07 -0500 (CDT) From: Grygorii Strashko To: Linus Walleij CC: , , Grygorii Strashko Subject: [PATCH] gpiolib: drop irq_base field from gpio_chip struct Date: Mon, 9 Oct 2017 17:16:05 -0500 Message-ID: <20171009221605.19108-1-grygorii.strashko@ti.com> X-Mailer: git-send-email 2.10.5 MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org Hence, the last user of irq_base field was removed by commit b4c495f03ae3 ("gpio: mockup: use irq_sim") it can be removed safely. Signed-off-by: Grygorii Strashko --- include/linux/gpio/driver.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/gpio/driver.h b/include/linux/gpio/driver.h index c97f832..1de5dd1 100644 --- a/include/linux/gpio/driver.h +++ b/include/linux/gpio/driver.h @@ -165,7 +165,6 @@ struct gpio_chip { */ struct irq_chip *irqchip; struct irq_domain *irqdomain; - unsigned int irq_base; irq_flow_handler_t irq_handler; unsigned int irq_default_type; unsigned int irq_chained_parent;