From: Simon Glass Date: Mon, 15 Mar 2021 04:25:47 +0000 (+1300) Subject: x86: itss: Tidy up bind() for of-platdata-inst X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=763ce51bc32470eeb7316643f4f341e14fe4ee07;p=u-boot.git x86: itss: Tidy up bind() for of-platdata-inst With the standard of-platdata we must fix up driver_data manually. With of-platadata-inst this is not necessary, since it is added to the device by dtoc. Update the code to handle this. Signed-off-by: Simon Glass Signed-off-by: Simon Glass --- diff --git a/arch/x86/cpu/intel_common/itss.c b/arch/x86/cpu/intel_common/itss.c index 588a512ecd..1eff030983 100644 --- a/arch/x86/cpu/intel_common/itss.c +++ b/arch/x86/cpu/intel_common/itss.c @@ -153,8 +153,9 @@ static int route_pmc_gpio_gpe(struct udevice *dev, uint pmc_gpe_num) static int itss_bind(struct udevice *dev) { - /* This is not set with of-platdata, so set it manually */ - if (CONFIG_IS_ENABLED(OF_PLATDATA)) + /* This is not set with basic of-platdata, so set it manually */ + if (CONFIG_IS_ENABLED(OF_PLATDATA) && + !CONFIG_IS_ENABLED(OF_PLATDATA_INST)) dev->driver_data = X86_IRQT_ITSS; return 0;