From mboxrd@z Thu Jan 1 00:00:00 1970 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 4B087E7C4E7 for ; Wed, 4 Oct 2023 18:06:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S243633AbjJDSGx (ORCPT ); Wed, 4 Oct 2023 14:06:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47830 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243780AbjJDSGx (ORCPT ); Wed, 4 Oct 2023 14:06:53 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0095EBF for ; Wed, 4 Oct 2023 11:06:49 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 49E67C433C7; Wed, 4 Oct 2023 18:06:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1696442809; bh=czuTJYoiEtsFHbCjSwedNb07k8+pbI6zABSTRALrW5o=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=P4So4vqEwOk2lh0OXZMeyliPcuJb0q7vBRPRklERkv7w1v/GCJiPJs9vVitASogy2 bclXBV1F6JwzQVPTseM2ZmKyMCJg9rGcKPrJ1jMgMZFVsqlTfa2lPlj/RxPq3MeOeD pn1dJgvW1oEGdEF+LSxZYgZOMJE5XPqqCTi7gbAQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Helge Deller , Sasha Levin Subject: [PATCH 5.15 116/183] parisc: irq: Make irq_stack_union static to avoid sparse warning Date: Wed, 4 Oct 2023 19:55:47 +0200 Message-ID: <20231004175208.776045816@linuxfoundation.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231004175203.943277832@linuxfoundation.org> References: <20231004175203.943277832@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Helge Deller [ Upstream commit b1bef1388c427cdad7331a9c8eb4ebbbe5b954b0 ] Signed-off-by: Helge Deller Signed-off-by: Sasha Levin --- arch/parisc/kernel/irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/parisc/kernel/irq.c b/arch/parisc/kernel/irq.c index e6cc38ef69458..5d9044e65a1a6 100644 --- a/arch/parisc/kernel/irq.c +++ b/arch/parisc/kernel/irq.c @@ -386,7 +386,7 @@ union irq_stack_union { volatile unsigned int lock[1]; }; -DEFINE_PER_CPU(union irq_stack_union, irq_stack_union) = { +static DEFINE_PER_CPU(union irq_stack_union, irq_stack_union) = { .slock = { 1,1,1,1 }, }; #endif -- 2.40.1