From: Simon Glass Date: Sun, 17 Feb 2019 03:25:02 +0000 (-0700) Subject: x86: broadwell: Don't bother probing the PCH for pinctrl X-Git-Tag: v2019.04-rc3~13^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c692f82240db09850ae4c70eec4a38a01ddca4a1;p=platform%2Fkernel%2Fu-boot.git x86: broadwell: Don't bother probing the PCH for pinctrl At present the pinctrl probes the PCH but since it only uses it to obtain a PCI address, this is no necessary. Avoiding this fixes one of the two co-dependent loops in broadwell. This driver really should be a proper pinctrl driver, but for now it remains a syscon device. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/cpu/broadwell/pinctrl_broadwell.c b/arch/x86/cpu/broadwell/pinctrl_broadwell.c index 914ecfb..aa83abb 100644 --- a/arch/x86/cpu/broadwell/pinctrl_broadwell.c +++ b/arch/x86/cpu/broadwell/pinctrl_broadwell.c @@ -16,6 +16,7 @@ #include #include #include +#include DECLARE_GLOBAL_DATA_PTR; @@ -214,7 +215,7 @@ static int broadwell_pinctrl_probe(struct udevice *dev) u32 gpiobase; int ret; - ret = uclass_first_device(UCLASS_PCH, &pch); + ret = uclass_find_first_device(UCLASS_PCH, &pch); if (ret) return ret; if (!pch)