parisc: irq: Make irq_stack_union static to avoid sparse warning

[ Upstream commit b1bef1388c ]

Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Helge Deller 2023-08-31 22:36:12 +02:00 committed by Greg Kroah-Hartman
parent f1fb571e91
commit ef26ca5534
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,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