From patchwork Mon Feb 4 09:58:52 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Masney X-Patchwork-Id: 10795311 X-Patchwork-Delegate: agross@codeaurora.org Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5F4221669 for ; Mon, 4 Feb 2019 09:59:02 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id EB1892A936 for ; Mon, 4 Feb 2019 09:58:57 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id DBC312A93B; Mon, 4 Feb 2019 09:58:57 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.7 required=2.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7565A2A936 for ; Mon, 4 Feb 2019 09:58:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728482AbfBDJ64 (ORCPT ); Mon, 4 Feb 2019 04:58:56 -0500 Received: from onstation.org ([52.200.56.107]:51364 "EHLO onstation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728254AbfBDJ64 (ORCPT ); Mon, 4 Feb 2019 04:58:56 -0500 Received: from xilitla.corp.homestore.net (c-98-239-145-235.hsd1.wv.comcast.net [98.239.145.235]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: masneyb) by onstation.org (Postfix) with ESMTPSA id 889BE16B; Mon, 4 Feb 2019 09:58:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=onstation.org; s=default; t=1549274335; bh=b7lxn7IPmC16lhSHLt4y4k56qUSfLfZNL9DqQEZGjiI=; h=From:To:Cc:Subject:Date:From; b=o0347q27xIJpPKgG7j5Ry+qJ9Xvn+JX4r6iKW0C5tyss8717JmTx6b3PDlv8ukTyQ Vj5q8TTyCU2F0DNIbrGX3X3ng6FhujUQ9R/cs/ljmSM0vyme1jwCykrq4SL+qg47Mu FvLMLlsakQmmnkgLDENMy1wwDp/FZIDF7F+3pY6g= From: Brian Masney To: linus.walleij@linaro.org, tglx@linutronix.de, marc.zyngier@arm.com Cc: andy.gross@linaro.org, sboyd@kernel.org, kernel-build-reports@lists.linaro.org, linaro-kernel@lists.linaro.org, linux-next@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-gpio@vger.kernel.org, bjorn.andersson@linaro.org, linux-kernel@vger.kernel.org, broonie@kernel.org Subject: [PATCH v2 -next 1/2] genirq: export irq_chip_set_wake_parent symbol Date: Mon, 4 Feb 2019 04:58:52 -0500 Message-Id: <20190204095853.12212-1-masneyb@onstation.org> X-Mailer: git-send-email 2.17.2 Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Export the irq_chip_set_wake_parent symbol so that drivers with hierarchical IRQ chips can be built as a module. Signed-off-by: Brian Masney Reported-by: Mark Brown Acked-by: Marc Zyngier --- This fixes a build failure in linux-next's spmi-gpio when using allmodconfig. See https://www.spinics.net/lists/linux-next/msg46362.html for Mark's message. Changes since v1: - Moved message about build failure out of the commit message and into the notes field. kernel/irq/chip.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index 34e969069488..086d5a34b5a0 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c @@ -1381,6 +1381,7 @@ int irq_chip_set_wake_parent(struct irq_data *data, unsigned int on) return -ENOSYS; } +EXPORT_SYMBOL_GPL(irq_chip_set_wake_parent); #endif /** From patchwork Mon Feb 4 09:58:53 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brian Masney X-Patchwork-Id: 10795315 X-Patchwork-Delegate: agross@codeaurora.org Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 7D6A1746 for ; Mon, 4 Feb 2019 09:59:19 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B2B7F2A936 for ; Mon, 4 Feb 2019 09:59:08 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A59E32A953; Mon, 4 Feb 2019 09:59:08 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.7 required=2.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 514082A936 for ; Mon, 4 Feb 2019 09:59:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728254AbfBDJ7B (ORCPT ); Mon, 4 Feb 2019 04:59:01 -0500 Received: from onstation.org ([52.200.56.107]:51388 "EHLO onstation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728389AbfBDJ64 (ORCPT ); Mon, 4 Feb 2019 04:58:56 -0500 Received: from xilitla.corp.homestore.net (c-98-239-145-235.hsd1.wv.comcast.net [98.239.145.235]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: masneyb) by onstation.org (Postfix) with ESMTPSA id 686DA17E; Mon, 4 Feb 2019 09:58:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=onstation.org; s=default; t=1549274335; bh=+ofySgnOmc3kbIqs61R1JSx+oM6/RKMpkCHAI5puzO8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tBbZ2BK6chS8S+emOfFBTi2txutJxXDz5BNtVYvic5ZKn6A5U5v+MCdYw22jnyDO9 07sgbEh4dHsqb+Z3LPuRx2BhO348n9dbitlWAQFGdUThnG3VVHCL5hmQ9togFN968y rQsq5YOkfuGa47qJzUm2VTCKobQck5nwYtjkGW4g= From: Brian Masney To: linus.walleij@linaro.org, tglx@linutronix.de, marc.zyngier@arm.com Cc: andy.gross@linaro.org, sboyd@kernel.org, kernel-build-reports@lists.linaro.org, linaro-kernel@lists.linaro.org, linux-next@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-gpio@vger.kernel.org, bjorn.andersson@linaro.org, linux-kernel@vger.kernel.org, broonie@kernel.org Subject: [PATCH v2 -next 2/2] pinctrl: qcom: spmi-gpio: select IRQ_DOMAIN_HIERARCHY in Kconfig Date: Mon, 4 Feb 2019 04:58:53 -0500 Message-Id: <20190204095853.12212-2-masneyb@onstation.org> X-Mailer: git-send-email 2.17.2 In-Reply-To: <20190204095853.12212-1-masneyb@onstation.org> References: <20190204095853.12212-1-masneyb@onstation.org> Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Select IRQ_DOMAIN_HIERARCHY for spmi-gpio in Kconfig since this driver is now setup as a hierarchical IRQ chip. Signed-off-by: Brian Masney --- Changes since v1: - None drivers/pinctrl/qcom/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pinctrl/qcom/Kconfig b/drivers/pinctrl/qcom/Kconfig index 836e9f3eae4c..93efbffcd3a4 100644 --- a/drivers/pinctrl/qcom/Kconfig +++ b/drivers/pinctrl/qcom/Kconfig @@ -137,6 +137,7 @@ config PINCTRL_QCOM_SPMI_PMIC select PINMUX select PINCONF select GENERIC_PINCONF + select IRQ_DOMAIN_HIERARCHY help This is the pinctrl, pinmux, pinconf and gpiolib driver for the Qualcomm GPIO and MPP blocks found in the Qualcomm PMIC's chips,