Merge branch 'remotes/lorenzo/pci/mobiveil'

- Removed unused readl and writel functions (Krzysztof Wilczyński)

* remotes/lorenzo/pci/mobiveil:
  PCI: mobiveil: Remove unused readl and writel functions
This commit is contained in:
Bjorn Helgaas 2021-07-06 10:56:32 -05:00
Родитель 25f2d74566 42d7a8dc19
Коммит d58b206110
1 изменённых файлов: 0 добавлений и 11 удалений

Просмотреть файл

@ -42,17 +42,6 @@ struct ls_pcie_g4 {
int irq;
};
static inline u32 ls_pcie_g4_lut_readl(struct ls_pcie_g4 *pcie, u32 off)
{
return ioread32(pcie->pci.csr_axi_slave_base + PCIE_LUT_OFF + off);
}
static inline void ls_pcie_g4_lut_writel(struct ls_pcie_g4 *pcie,
u32 off, u32 val)
{
iowrite32(val, pcie->pci.csr_axi_slave_base + PCIE_LUT_OFF + off);
}
static inline u32 ls_pcie_g4_pf_readl(struct ls_pcie_g4 *pcie, u32 off)
{
return ioread32(pcie->pci.csr_axi_slave_base + PCIE_PF_OFF + off);