From patchwork Mon May 16 18:56:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 573145 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B5479C433EF for ; Mon, 16 May 2022 18:56:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345196AbiEPS4c (ORCPT ); Mon, 16 May 2022 14:56:32 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54688 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1345184AbiEPS42 (ORCPT ); Mon, 16 May 2022 14:56:28 -0400 Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 89F3165F1; Mon, 16 May 2022 11:56:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1652727387; x=1684263387; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=BfbVbL6Hld/E/O04WsrHSldx5ETHMb9X0kAR36zcyzA=; b=iQmqRle8JSL02JSXoiIJB1iUDZHBEfGi0giTSmkwC8YSJn8rdIcmwlFP V82aeirR7HkA4zgdLdjda2Zs1Lw/+AjgHjGRXWJK479Krzn3RcMppnH57 frqR2Kw0gWHHSca3crsWmlsaEWPinV6zYI+bfnjP7BQnmjJkJS6Lmne6t UmDp3NhlPCYABOHchlUDv00gcz0fA4tnah/worynr+ifVkhEdWiHjdFtY zuMbeFu0DvEWGrBviQNuVyFtVUN5OlMUIaNIixcVMqHMcb95BffTBw2pS Ra59kvec0yXgbxwY0nx+/GC3gKgWPXqX7+4tXXhM7dPsHpRa28D1vvp7/ g==; X-IronPort-AV: E=McAfee;i="6400,9594,10349"; a="258494611" X-IronPort-AV: E=Sophos;i="5.91,230,1647327600"; d="scan'208";a="258494611" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 May 2022 11:56:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,230,1647327600"; d="scan'208";a="660250203" Received: from black.fi.intel.com ([10.237.72.28]) by FMSMGA003.fm.intel.com with ESMTP; 16 May 2022 11:56:21 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 0B3F1CE; Mon, 16 May 2022 21:56:20 +0300 (EEST) From: Andy Shevchenko To: Andy Shevchenko , linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Mika Westerberg , Andy Shevchenko , Linus Walleij Subject: [PATCH v1 2/2] pinctrl: intel: Drop unsued irqchip member in struct intel_pinctrl Date: Mon, 16 May 2022 21:56:18 +0300 Message-Id: <20220516185618.32448-2-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220516185618.32448-1-andriy.shevchenko@linux.intel.com> References: <20220516185618.32448-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org There is no users of irqchip member in struct intel_pinctrl. Drop it. Signed-off-by: Andy Shevchenko --- drivers/pinctrl/intel/pinctrl-intel.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/pinctrl/intel/pinctrl-intel.h b/drivers/pinctrl/intel/pinctrl-intel.h index c4fef03b663f..710341bb67cc 100644 --- a/drivers/pinctrl/intel/pinctrl-intel.h +++ b/drivers/pinctrl/intel/pinctrl-intel.h @@ -223,7 +223,6 @@ struct intel_pinctrl_context { * @pctldesc: Pin controller description * @pctldev: Pointer to the pin controller device * @chip: GPIO chip in this pin controller - * @irqchip: IRQ chip in this pin controller * @soc: SoC/PCH specific pin configuration data * @communities: All communities in this pin controller * @ncommunities: Number of communities in this pin controller @@ -236,7 +235,6 @@ struct intel_pinctrl { struct pinctrl_desc pctldesc; struct pinctrl_dev *pctldev; struct gpio_chip chip; - struct irq_chip irqchip; const struct intel_pinctrl_soc_data *soc; struct intel_community *communities; size_t ncommunities;