{
        struct dw_pcie *pci;
 
-       if (pp->ops->rd_own_conf)
-               return pp->ops->rd_own_conf(pp, where, size, val);
-
        pci = to_dw_pcie_from_pp(pp);
        return dw_pcie_read(pci->dbi_base + where, size, val);
 }
 {
        struct dw_pcie *pci;
 
-       if (pp->ops->wr_own_conf)
-               return pp->ops->wr_own_conf(pp, where, size, val);
-
        pci = to_dw_pcie_from_pp(pp);
        return dw_pcie_write(pci->dbi_base + where, size, val);
 }
 static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
                                 u32 devfn, int where, int size, u32 *val)
 {
-       if (pp->ops->rd_other_conf)
-               return pp->ops->rd_other_conf(pp, bus, devfn, where,
-                                             size, val);
-
        return dw_pcie_access_other_conf(pp, bus, devfn, where, size, val,
                                         false);
 }
 static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
                                 u32 devfn, int where, int size, u32 val)
 {
-       if (pp->ops->wr_other_conf)
-               return pp->ops->wr_other_conf(pp, bus, devfn, where,
-                                             size, val);
-
        return dw_pcie_access_other_conf(pp, bus, devfn, where, size, &val,
                                         true);
 }
 
 };
 
 struct dw_pcie_host_ops {
-       int (*rd_own_conf)(struct pcie_port *pp, int where, int size, u32 *val);
-       int (*wr_own_conf)(struct pcie_port *pp, int where, int size, u32 val);
-       int (*rd_other_conf)(struct pcie_port *pp, struct pci_bus *bus,
-                            unsigned int devfn, int where, int size, u32 *val);
-       int (*wr_other_conf)(struct pcie_port *pp, struct pci_bus *bus,
-                            unsigned int devfn, int where, int size, u32 val);
        int (*host_init)(struct pcie_port *pp);
        void (*scan_bus)(struct pcie_port *pp);
        void (*set_num_vectors)(struct pcie_port *pp);