From nobody Mon Jun 22 20:13:16 2026 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 A06AEC4167D for ; Wed, 6 Apr 2022 01:10:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1452846AbiDFBJ0 (ORCPT ); Tue, 5 Apr 2022 21:09:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37170 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1457390AbiDEQDK (ORCPT ); Tue, 5 Apr 2022 12:03:10 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 653585FD2 for ; Tue, 5 Apr 2022 08:40:04 -0700 (PDT) Date: Tue, 05 Apr 2022 15:40:02 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1649173203; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/bDtmQYgBvJGgUnqDZdoylzTygcxGVQDC5VhemXrey8=; b=lHdM+kZ9Ue0f9rsKoPhHy/toqky3/GBj7xPzCcUTrSSp+Dgsn9Q73ZoZPZmkJKNZAO906G BmsDFd+Y7uCWZ8rync15CwDna7MWPzYjLF3h3Nc/uu5+tPaDfcXeyyTsFrACs89jXUZflW hXft24QR5bXF/CwU/jtFpDix2QLPtn7zB4+jKAdIPvsLp7z/RdRen969a+a6LniafxBL54 TsEyEsN7/JdVwGJfBAiABGCHLf/ju/C4mh8TtvYvTLYSCwxS47vB0VNteitRd9QzgAZyUi jGdiktJAEdT0JVgPCvFZwD7bAEU0STUFBzvvc4XvOpmdnJXzBqD64D2GG9FW9Q== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1649173203; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/bDtmQYgBvJGgUnqDZdoylzTygcxGVQDC5VhemXrey8=; b=f5o6m9L1HSYlncLfXFk1Eo8ER7GlgBObZEWKl06LJKtwcfFiV/L364wIXDzwzj1mHY6kT8 dg9VH6e7wockenBA== From: "irqchip-bot for YueHaibing" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-kernel@vger.kernel.org Subject: [irqchip: irq/irqchip-fixes] irq/qcom-mpm: Fix build error without MAILBOX Cc: YueHaibing , Shawn Guo , Marc Zyngier , tglx@linutronix.de In-Reply-To: <20220317131956.30004-1-yuehaibing@huawei.com> References: <20220317131956.30004-1-yuehaibing@huawei.com> MIME-Version: 1.0 Message-ID: <164917320203.389.10470324625310778188.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the irq/irqchip-fixes branch of i= rqchip: Commit-ID: fa4dcc880390fbedf4118e9f88a6b13363e0a7a1 Gitweb: https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-plat= forms/fa4dcc880390fbedf4118e9f88a6b13363e0a7a1 Author: YueHaibing AuthorDate: Thu, 17 Mar 2022 21:19:56 +08:00 Committer: Marc Zyngier CommitterDate: Tue, 05 Apr 2022 16:33:13 +01:00 irq/qcom-mpm: Fix build error without MAILBOX If MAILBOX is n, building fails: drivers/irqchip/irq-qcom-mpm.o: In function `mpm_pd_power_off': irq-qcom-mpm.c:(.text+0x174): undefined reference to `mbox_send_message' irq-qcom-mpm.c:(.text+0x174): relocation truncated to fit: R_AARCH64_CALL26= against undefined symbol `mbox_send_message' Make QCOM_MPM depends on MAILBOX to fix this. Fixes: a6199bb514d8 ("irqchip: Add Qualcomm MPM controller driver") Signed-off-by: YueHaibing Acked-by: Shawn Guo Signed-off-by: Marc Zyngier Link: https://lore.kernel.org/r/20220317131956.30004-1-yuehaibing@huawei.com --- drivers/irqchip/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig index 680d2fc..15edb9a 100644 --- a/drivers/irqchip/Kconfig +++ b/drivers/irqchip/Kconfig @@ -433,6 +433,7 @@ config QCOM_PDC config QCOM_MPM tristate "QCOM MPM" depends on ARCH_QCOM + depends on MAILBOX select IRQ_DOMAIN_HIERARCHY help MSM Power Manager driver to manage and configure wakeup