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 11E95CE7A88 for ; Sun, 24 Sep 2023 13:30:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229807AbjIXNaZ (ORCPT ); Sun, 24 Sep 2023 09:30:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38710 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229459AbjIXN3b (ORCPT ); Sun, 24 Sep 2023 09:29:31 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 50B6046BB; Sun, 24 Sep 2023 06:19:57 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 704F2C433C9; Sun, 24 Sep 2023 13:19:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1695561597; bh=JcE63wzm61YY5xFg69XfrjRon2z6lmdxwqdKvslTZwg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KV5N370XzhHXry7iranaZiNsIKe35+3myQtyO6Rl4K4khJSbyHbg9rHgfTLeWibnQ czPXL6gbDKMyKb7+IuAbiTco3dbI/szhUOKJz4lrovtrfeExVpxuNLQpW0bAtYUeCX iF9XwPQpADpntVlFtI58cNDEdY/CNpzurF8qlK0JLDLX2uqIWALPJNdchke9PBN7+w OeyNsDsz2GAj9pi6rkP11XVbb30PIaBuiRvjdExyvbfBHLx9zuO4YxW4NMi75Tsz8V KLruUHJ7NAtsYROioow2UrY4EmpQCRzotRzMpeJqh3Kl+jNMx5sBNoK3Zoa7hD5Z3Q PukcT5QDch2pw== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Helge Deller , Sasha Levin , James.Bottomley@HansenPartnership.com, linux-parisc@vger.kernel.org Subject: [PATCH AUTOSEL 5.10 04/13] parisc: irq: Make irq_stack_union static to avoid sparse warning Date: Sun, 24 Sep 2023 09:19:34 -0400 Message-Id: <20230924131945.1276562-4-sashal@kernel.org> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20230924131945.1276562-1-sashal@kernel.org> References: <20230924131945.1276562-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 5.10.197 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 60f5829d476f5..2762e8540672e 100644 --- a/arch/parisc/kernel/irq.c +++ b/arch/parisc/kernel/irq.c @@ -388,7 +388,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