From nobody Wed Dec 17 10:57:52 2025 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 A1A60EE49A5 for ; Mon, 21 Aug 2023 16:58:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236896AbjHUQ6T (ORCPT ); Mon, 21 Aug 2023 12:58:19 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44934 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236849AbjHUQ6K (ORCPT ); Mon, 21 Aug 2023 12:58:10 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 61A66FA for ; Mon, 21 Aug 2023 09:58:08 -0700 (PDT) Date: Mon, 21 Aug 2023 16:58:06 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1692637086; 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=2e2XM2wsAXceMOmm9YHK69nGWkZysYH9QMtdHsSPlDo=; b=YWKw0hjDFq8zGr8uDjrYjMGKxm7TuoA95flec57Ff4wSjgV3BS5O+7I4ac0j1bDoCl1rf8 4mLeeaInOnKTekVblARkmNPv0U6bVVIr5nXtYowaCzM1n/uqfORAGxdAca2Bvm6McgjdBo vC7rGbhc8drRvqLuh/RWLcN1zXQkLFxu6Xs+tL1qJj0t0l0QAaPxLVaP8DPQ+mRV3Ygpjz ZlGS5+eY0unT2uF/CywWVyQVk9feZ9SHiTXooC0YfqaQV64Yr24HPx47PJpN31Y1OaGK+T KMrj39UQEBVDyrFRdzPOehCp8mXoAUi/y5he/Z19cbnLFEuGb7satKJTjP52Aw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1692637086; 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=2e2XM2wsAXceMOmm9YHK69nGWkZysYH9QMtdHsSPlDo=; b=JwbNQiFsqUWF6hKUxR2uM5PftMI3HUJfESVcRpLmTr9XJ/FvsdYM/eNhd3ti0PkX6OgoT+ cEAFPw9B5UAiTsBA== From: "irqchip-bot for Arnd Bergmann" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-kernel@vger.kernel.org Subject: [irqchip: irq/irqchip-next] irqchipr/i8259: Mark i8259_of_init() static Cc: Arnd Bergmann , Marc Zyngier , tglx@linutronix.de In-Reply-To: <20230810123404.1222332-3-arnd@kernel.org> References: <20230810123404.1222332-3-arnd@kernel.org> MIME-Version: 1.0 Message-ID: <169263708616.27769.11978640366702332497.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-next branch of ir= qchip: Commit-ID: 424a4aec7a2392d248e2f260ba571a01e24b8ec2 Gitweb: https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-plat= forms/424a4aec7a2392d248e2f260ba571a01e24b8ec2 Author: Arnd Bergmann AuthorDate: Thu, 10 Aug 2023 14:33:56 +02:00 Committer: Marc Zyngier CommitterDate: Mon, 21 Aug 2023 17:40:30 +01:00 irqchipr/i8259: Mark i8259_of_init() static i8259_of_init() is only used as an initcall and does not need to be global, so mark it static to avoid: drivers/irqchip/irq-i8259.c:343:12: warning: no previous prototype for 'i82= 59_of_init' [-Wmissing-prototypes] Signed-off-by: Arnd Bergmann Signed-off-by: Marc Zyngier Link: https://lore.kernel.org/r/20230810123404.1222332-3-arnd@kernel.org --- drivers/irqchip/irq-i8259.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/irqchip/irq-i8259.c b/drivers/irqchip/irq-i8259.c index b70ce0d..115bdcf 100644 --- a/drivers/irqchip/irq-i8259.c +++ b/drivers/irqchip/irq-i8259.c @@ -340,7 +340,7 @@ static void i8259_irq_dispatch(struct irq_desc *desc) generic_handle_domain_irq(domain, hwirq); } =20 -int __init i8259_of_init(struct device_node *node, struct device_node *par= ent) +static int __init i8259_of_init(struct device_node *node, struct device_no= de *parent) { struct irq_domain *domain; unsigned int parent_irq;