summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-05-26 07:32:38 +0300
committerNico Huber <nico.h@gmx.de>2020-07-03 08:28:20 +0000
commit53c22873b049771862e0f9b4cfb3509c07a7d04b (patch)
tree8cc57d601eaa12559e2d61d2bf02b6fae876933a /src
parenta1061639d2d17886032df86c0f9b21e44b9e9818 (diff)
downloadcoreboot-53c22873b049771862e0f9b4cfb3509c07a7d04b.tar.gz
coreboot-53c22873b049771862e0f9b4cfb3509c07a7d04b.tar.bz2
coreboot-53c22873b049771862e0f9b4cfb3509c07a7d04b.zip
drivers/intel/pmx_mux: Remove redundant declaration
Change-Id: Ie64b267ac01afa9774105e1ab8a7c18021726ff3 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41871 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/drivers/intel/pmc_mux/chip.h2
-rw-r--r--src/soc/intel/tigerlake/pmc.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/drivers/intel/pmc_mux/chip.h b/src/drivers/intel/pmc_mux/chip.h
index f73a07047f11..dcca2a3ecc4e 100644
--- a/src/drivers/intel/pmc_mux/chip.h
+++ b/src/drivers/intel/pmc_mux/chip.h
@@ -3,8 +3,6 @@
#ifndef __DRIVERS_INTEL_PMC_MUX_H__
#define __DRIVERS_INTEL_PMC_MUX_H__
-extern struct chip_operations drivers_intel_pmc_mux_ops;
-
struct drivers_intel_pmc_mux_config {
};
diff --git a/src/soc/intel/tigerlake/pmc.c b/src/soc/intel/tigerlake/pmc.c
index 8fcbe5050441..f2f8a06260f7 100644
--- a/src/soc/intel/tigerlake/pmc.c
+++ b/src/soc/intel/tigerlake/pmc.c
@@ -126,6 +126,9 @@ static void soc_pmc_fill_ssdt(const struct device *dev)
dev_path(dev));
}
+/* FIXME: Rewrite loop below without this. */
+extern struct chip_operations drivers_intel_pmc_mux_ops;
+
/* By default, TGL uses the PMC MUX for all ports, so port_number is unused */
const struct device *soc_get_pmc_mux_device(int port_number)
{