soc/intel: Use config_of()
Change-Id: I0727a6b327410197cf32f598d1312737744386b3 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34328 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: David Guckian
This commit is contained in:
parent
4af4e7f06e
commit
8950cfb66f
64 changed files with 97 additions and 167 deletions
|
|
@ -270,7 +270,7 @@ static void pch_lpc_interrupt_init(void)
|
|||
const struct device *dev;
|
||||
|
||||
dev = pcidev_on_root(PCH_DEV_SLOT_LPC, 0);
|
||||
if (!dev || !dev->chip_info)
|
||||
if (!dev)
|
||||
return;
|
||||
|
||||
soc_pch_pirq_init(dev);
|
||||
|
|
@ -283,7 +283,7 @@ void pch_enable_lpc(void)
|
|||
uint32_t gen_io_dec[LPC_NUM_GENERIC_IO_RANGES];
|
||||
|
||||
dev = pcidev_on_root(PCH_DEV_SLOT_LPC, 0);
|
||||
if (!dev || !dev->chip_info)
|
||||
if (!dev)
|
||||
return;
|
||||
|
||||
soc_get_gen_io_dec_range(dev, gen_io_dec);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue