diff options
author | Helge Deller <deller@gmx.de> | 2023-08-10 04:34:58 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2023-08-10 17:32:10 +0200 |
commit | eed869aaf1305444434ad5a9a56abc45aacc0c40 (patch) | |
tree | 4c13aa5e70132d345e86a733340df7a322608776 /arch | |
parent | a07c03e8064026d55d1699d161c536cc437d58d6 (diff) |
parisc: firmware: Mark pdc_result buffers local
This fixes a sparse warning which suggest to make those static.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/parisc/kernel/firmware.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/kernel/firmware.c b/arch/parisc/kernel/firmware.c index 9cd8af5e79d7..8f37e75f2fb9 100644 --- a/arch/parisc/kernel/firmware.c +++ b/arch/parisc/kernel/firmware.c @@ -74,8 +74,8 @@ static DEFINE_SPINLOCK(pdc_lock); #endif -unsigned long pdc_result[NUM_PDC_RESULT] __aligned(8); -unsigned long pdc_result2[NUM_PDC_RESULT] __aligned(8); +static unsigned long pdc_result[NUM_PDC_RESULT] __aligned(8); +static unsigned long pdc_result2[NUM_PDC_RESULT] __aligned(8); #ifdef CONFIG_64BIT #define WIDE_FIRMWARE 0x1 |