mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-19 20:34:20 +08:00
PCI: cadence: Simplify cdns_pcie_host_init_address_translation() return expression
Simplify the return expression. Link: https://lore.kernel.org/r/20200921131053.92752-1-miaoqinglang@huawei.com Signed-off-by: Qinglang Miao <miaoqinglang@huawei.com> Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> Reviewed-by: Rob Herring <robh@kernel.org>
This commit is contained in:
parent
c7e592a6a5
commit
9aae3af876
@ -337,7 +337,7 @@ static int cdns_pcie_host_init_address_translation(struct cdns_pcie_rc *rc)
|
|||||||
struct resource_entry *entry;
|
struct resource_entry *entry;
|
||||||
u64 cpu_addr = cfg_res->start;
|
u64 cpu_addr = cfg_res->start;
|
||||||
u32 addr0, addr1, desc1;
|
u32 addr0, addr1, desc1;
|
||||||
int r, err, busnr = 0;
|
int r, busnr = 0;
|
||||||
|
|
||||||
entry = resource_list_first_type(&bridge->windows, IORESOURCE_BUS);
|
entry = resource_list_first_type(&bridge->windows, IORESOURCE_BUS);
|
||||||
if (entry)
|
if (entry)
|
||||||
@ -383,11 +383,7 @@ static int cdns_pcie_host_init_address_translation(struct cdns_pcie_rc *rc)
|
|||||||
r++;
|
r++;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = cdns_pcie_host_map_dma_ranges(rc);
|
return cdns_pcie_host_map_dma_ranges(rc);
|
||||||
if (err)
|
|
||||||
return err;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cdns_pcie_host_init(struct device *dev,
|
static int cdns_pcie_host_init(struct device *dev,
|
||||||
|
Loading…
Reference in New Issue
Block a user