intel/baytrail: Replace config_of(dev) with config_of_soc()
The function does not otherwise need dev. Change-Id: I75d3283b537151258ed48f7e4e0991dff53a803c Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35670 Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
d5f645c6cd
commit
459f493486
|
@ -41,13 +41,11 @@ void punit_init(void)
|
||||||
{
|
{
|
||||||
uint32_t reg;
|
uint32_t reg;
|
||||||
uint8_t rid;
|
uint8_t rid;
|
||||||
const struct device *dev;
|
|
||||||
const struct soc_intel_baytrail_config *cfg = NULL;
|
const struct soc_intel_baytrail_config *cfg = NULL;
|
||||||
|
|
||||||
rid = pci_read_config8(IOSF_PCI_DEV, REVID);
|
rid = pci_read_config8(IOSF_PCI_DEV, REVID);
|
||||||
dev = pcidev_on_root(SOC_DEV, SOC_FUNC);
|
|
||||||
|
|
||||||
cfg = config_of(dev);
|
cfg = config_of_soc();
|
||||||
|
|
||||||
reg = iosf_punit_read(SB_BIOS_CONFIG);
|
reg = iosf_punit_read(SB_BIOS_CONFIG);
|
||||||
/* Write bits 17:16 of SB_BIOS_CONFIG in the PUNIT. */
|
/* Write bits 17:16 of SB_BIOS_CONFIG in the PUNIT. */
|
||||||
|
|
Loading…
Reference in New Issue