]> Git Repo - u-boot.git/blobdiff - drivers/pci/pcie_xilinx.c
treewide: replace with error() with pr_err()
[u-boot.git] / drivers / pci / pcie_xilinx.c
index 521600180e6d0068b0b9d30e667ab356027a445c..6425825068e90ce755d1f076bd2a47e57abde143 100644 (file)
 
 /**
  * struct xilinx_pcie - Xilinx PCIe controller state
- * @hose: The parent classes PCI controller state
  * @cfg_base: The base address of memory mapped configuration space
  */
 struct xilinx_pcie {
-       struct pci_controller hose;
        void *cfg_base;
 };
 
@@ -87,7 +85,7 @@ static int pcie_xilinx_config_address(struct xilinx_pcie *pcie, pci_dev_t bdf,
 
 /**
  * pcie_xilinx_read_config() - Read from configuration space
- * @pcie: Pointer to the PCI controller state
+ * @bus: Pointer to the PCI bus
  * @bdf: Identifies the PCIe device to access
  * @offset: The offset into the device's configuration space
  * @valuep: A pointer at which to store the read value
@@ -130,7 +128,7 @@ static int pcie_xilinx_read_config(struct udevice *bus, pci_dev_t bdf,
 
 /**
  * pcie_xilinx_write_config() - Write to configuration space
- * @pcie: Pointer to the PCI controller state
+ * @bus: Pointer to the PCI bus
  * @bdf: Identifies the PCIe device to access
  * @offset: The offset into the device's configuration space
  * @value: The value to write
@@ -186,10 +184,10 @@ static int pcie_xilinx_ofdata_to_platdata(struct udevice *dev)
        DECLARE_GLOBAL_DATA_PTR;
        int err;
 
-       err = fdt_get_resource(gd->fdt_blob, dev->of_offset, "reg",
+       err = fdt_get_resource(gd->fdt_blob, dev_of_offset(dev), "reg",
                               0, &reg_res);
        if (err < 0) {
-               error("\"reg\" resource not found\n");
+               pr_err("\"reg\" resource not found\n");
                return err;
        }
 
This page took 0.028406 seconds and 4 git commands to generate.