diff options
author | Fabio Estevam <[email protected]> | 2014-09-22 14:52:07 -0600 |
---|---|---|
committer | Bjorn Helgaas <[email protected]> | 2014-09-22 14:52:07 -0600 |
commit | 9f0dbe087bff6cfffcf8b0c25c08891d66b987be (patch) | |
tree | 92ef3e79b4512fdfbd7cd115b30e4e24ba546a6f | |
parent | adf70fc087b1750c3792cd56abc6a45e49bb3a11 (diff) |
PCI: designware: Use NULL instead of false
of_get_address() expects pointers in the third and fourth parameters.
Pass NULL in order to fix the following sparse warnings:
drivers/pci/host/pcie-designware.c:433:51: warning: Using plain integer as NULL pointer
drivers/pci/host/pcie-designware.c:433:58: warning: Using plain integer as NULL pointer
Signed-off-by: Fabio Estevam <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Acked-by: Lucas Stach <[email protected]>
Acked-by: Jingoo Han <[email protected]>
-rw-r--r-- | drivers/pci/host/pcie-designware.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/host/pcie-designware.c b/drivers/pci/host/pcie-designware.c index 5d720c21fdc0..1c59e4e6b2f0 100644 --- a/drivers/pci/host/pcie-designware.c +++ b/drivers/pci/host/pcie-designware.c @@ -430,7 +430,7 @@ int __init dw_pcie_host_init(struct pcie_port *pp) /* Find the untranslated configuration space address */ index = of_property_match_string(np, "reg-names", "config"); - addrp = of_get_address(np, index, false, false); + addrp = of_get_address(np, index, NULL, NULL); pp->cfg0_mod_base = of_read_number(addrp, ns); pp->cfg1_mod_base = pp->cfg0_mod_base + pp->cfg0_size; } else { |