PCI: kirin: Return -EPROBE_DEFER in case the gpio isn't ready
authorBean Huo <beanhuo@micron.com>
Fri, 18 Sep 2020 12:38:00 +0000 (14:38 +0200)
committerLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Mon, 28 Sep 2020 16:51:21 +0000 (17:51 +0100)
commitecc3e424d190eb2408751d2100e97a48f69a222d
treeacef01bc87fd76abc9df62247919e78b0d4cc77a
parent9123e3a74ec7b934a4a099e98af6a61c2f80bbf5
PCI: kirin: Return -EPROBE_DEFER in case the gpio isn't ready

PCI host bridge driver can be probed before the gpiochip it requires,
so, of_get_named_gpio() can return -EPROBE_DEFER. Current code lets the
kirin_pcie_probe() directly return -ENODEV, which results in the PCI
host controller driver probe failure; with this error code the PCI host
controller driver will not be probed again when the gpiochip driver is
loaded.

Fix the above issue by letting kirin_pcie_probe() return -EPROBE_DEFER in
such a case.

Link: https://lore.kernel.org/r/20200918123800.19983-1-huobean@gmail.com
Signed-off-by: Bean Huo <beanhuo@micron.com>
[lorenzo.pieralisi@arm.com: commit log]
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
drivers/pci/controller/dwc/pcie-kirin.c