aboutsummaryrefslogtreecommitdiff
path: root/drivers/parisc
diff options
context:
space:
mode:
authorGravatar Helge Deller <deller@gmx.de> 2023-06-30 13:11:12 +0200
committerGravatar Helge Deller <deller@gmx.de> 2023-06-30 17:14:15 +0200
commit1d72e83d63c792b484ef14901385e06b06d5eda4 (patch)
tree05f2fccf2cf912e0a27ec6829374f2e036fa0d2c /drivers/parisc
parentparisc: unaligned: Include header file to avoid missing prototype warnings (diff)
downloadlinux-1d72e83d63c792b484ef14901385e06b06d5eda4.tar.gz
linux-1d72e83d63c792b484ef14901385e06b06d5eda4.tar.bz2
linux-1d72e83d63c792b484ef14901385e06b06d5eda4.zip
parisc: lba_pci: Mark two variables __maybe_unused
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/parisc')
-rw-r--r--drivers/parisc/lba_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/parisc/lba_pci.c b/drivers/parisc/lba_pci.c
index afc6e66ddc31..5fe427f6a0ef 100644
--- a/drivers/parisc/lba_pci.c
+++ b/drivers/parisc/lba_pci.c
@@ -404,7 +404,7 @@ static int elroy_cfg_read(struct pci_bus *bus, unsigned int devfn, int pos, int
static void
lba_wr_cfg(struct lba_device *d, u32 tok, u8 reg, u32 data, u32 size)
{
- int error = 0;
+ int error __maybe_unused = 0;
u32 arb_mask = 0;
u32 error_config = 0;
u32 status_control = 0;
@@ -1018,7 +1018,7 @@ static void
lba_pat_resources(struct parisc_device *pa_dev, struct lba_device *lba_dev)
{
unsigned long bytecnt;
- long io_count;
+ long io_count __maybe_unused;
long status; /* PDC return status */
long pa_count;
pdc_pat_cell_mod_maddr_block_t *pa_pdc_cell; /* PA_VIEW */