| 1234567891011121314151617181920212223242526272829303132333435 |
- From: Sergio Paracuellos <[email protected]>
- Date: Mon, 24 Jan 2022 12:30:03 +0100
- Subject: [PATCH] PCI: mt7621: Remove unused function pcie_rmw()
- Function pcie_rmw() is not being used at all and can be deleted. Hence get
- rid of it, which fixes this warning:
- drivers/pci/controller/pcie-mt7621.c:112:20: warning: unused function 'pcie_rmw' [-Wunused-function]
- Fixes: 2bdd5238e756 ("PCI: mt7621: Add MediaTek MT7621 PCIe host controller driver")
- Link: https://lore.kernel.org/r/[email protected]
- Link: https://lore.kernel.org/all/[email protected]/
- Reported-by: kernel test robot <[email protected]>
- Signed-off-by: Sergio Paracuellos <[email protected]>
- Signed-off-by: Bjorn Helgaas <[email protected]>
- ---
- --- a/drivers/pci/controller/pcie-mt7621.c
- +++ b/drivers/pci/controller/pcie-mt7621.c
- @@ -109,15 +109,6 @@ static inline void pcie_write(struct mt7
- writel_relaxed(val, pcie->base + reg);
- }
-
- -static inline void pcie_rmw(struct mt7621_pcie *pcie, u32 reg, u32 clr, u32 set)
- -{
- - u32 val = readl_relaxed(pcie->base + reg);
- -
- - val &= ~clr;
- - val |= set;
- - writel_relaxed(val, pcie->base + reg);
- -}
- -
- static inline u32 pcie_port_read(struct mt7621_pcie_port *port, u32 reg)
- {
- return readl_relaxed(port->base + reg);
|