MIPS: pci-rt3883: trivial: remove unused variable
authorIlya Lipnitskiy <ilya.lipnitskiy@gmail.com>
Wed, 14 Apr 2021 03:12:35 +0000 (20:12 -0700)
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>
Fri, 16 Apr 2021 07:15:40 +0000 (09:15 +0200)
Fixes the following compiler warning:
  warning: unused variable 'flags' [-Wunused-variable]

Fixes: e5067c718b3a ("MIPS: pci-rt3883: Remove odd locking in PCI config space access code")
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
Acked-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Cc: trivial@kernel.org
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
arch/mips/pci/pci-rt3883.c

index 0ac6346..e422f78 100644 (file)
@@ -100,7 +100,6 @@ static u32 rt3883_pci_read_cfg32(struct rt3883_pci_controller *rpc,
                               unsigned bus, unsigned slot,
                               unsigned func, unsigned reg)
 {
-       unsigned long flags;
        u32 address;
        u32 ret;
 
@@ -116,7 +115,6 @@ static void rt3883_pci_write_cfg32(struct rt3883_pci_controller *rpc,
                                 unsigned bus, unsigned slot,
                                 unsigned func, unsigned reg, u32 val)
 {
-       unsigned long flags;
        u32 address;
 
        address = rt3883_pci_get_cfgaddr(bus, slot, func, reg);
@@ -229,7 +227,6 @@ static int rt3883_pci_config_read(struct pci_bus *bus, unsigned int devfn,
                                  int where, int size, u32 *val)
 {
        struct rt3883_pci_controller *rpc;
-       unsigned long flags;
        u32 address;
        u32 data;
 
@@ -263,7 +260,6 @@ static int rt3883_pci_config_write(struct pci_bus *bus, unsigned int devfn,
                                   int where, int size, u32 val)
 {
        struct rt3883_pci_controller *rpc;
-       unsigned long flags;
        u32 address;
        u32 data;