Subrata Banik has uploaded a new change for review. ( https://review.coreboot.org/19036 )
Change subject: soc/intel/apollolake: Fix debug build booting issue ......................................................................
soc/intel/apollolake: Fix debug build booting issue
This patch fix apollolake devices unable to boot with coreboot debug image issue.
Change-Id: I28943100ba19dec1e540fdbba1c1e110c6af1488 Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/soc/intel/apollolake/pmutil.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/19036/1
diff --git a/src/soc/intel/apollolake/pmutil.c b/src/soc/intel/apollolake/pmutil.c index 7d3cb07..9e57b28 100644 --- a/src/soc/intel/apollolake/pmutil.c +++ b/src/soc/intel/apollolake/pmutil.c @@ -505,7 +505,7 @@ ROMSTAGE_CONST struct soc_intel_apollolake_config *config;
/* Look up the device in devicetree */ - ROMSTAGE_CONST struct device *dev = SA_DEV_ROOT; + ROMSTAGE_CONST struct device *dev = dev_find_slot(0, SA_DEVFN_ROOT); if (!dev || !dev->chip_info) { printk(BIOS_ERR, "BUG! Could not find SOC devicetree config\n"); return;