]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
x86: apl: Drop unnecessary code in PMC driver
authorSimon Glass <sjg@chromium.org>
Tue, 22 Sep 2020 18:45:23 +0000 (12:45 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Fri, 25 Sep 2020 03:27:20 +0000 (11:27 +0800)
We don't have CONFIG_PCI in TPL but it is present in SPL, etc. So this
code is not needed. Drop it, and fix a code-style nit just above.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/x86/cpu/apollolake/pmc.c

index 192dec7109aa3ece3cf26e9a6b825d9611927db0..576d0187570d446c60a4e091696ed4a761e06cfd 100644 (file)
@@ -118,7 +118,8 @@ int apl_pmc_ofdata_to_uc_platdata(struct udevice *dev)
        int size;
        int ret;
 
-       ret = dev_read_u32_array(dev, "early-regs", base, ARRAY_SIZE(base));
+       ret = dev_read_u32_array(dev, "early-regs", base,
+                                ARRAY_SIZE(base));
        if (ret)
                return log_msg_ret("Missing/short early-regs", ret);
        if (spl_phase() == PHASE_TPL) {
@@ -133,11 +134,6 @@ int apl_pmc_ofdata_to_uc_platdata(struct udevice *dev)
        }
        upriv->acpi_base = base[4];
 
-       /* Since PCI is not enabled, we must get the BDF manually */
-       plat->bdf = pci_get_devfn(dev);
-       if (plat->bdf < 0)
-               return log_msg_ret("Cannot get PMC PCI address", plat->bdf);
-
        /* Get the dwX values for pmc gpe settings */
        size = dev_read_size(dev, "gpe0-dw");
        if (size < 0)