diff options
author | Subrata Banik <subrata.banik@intel.com> | 2018-11-17 15:17:38 +0530 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2018-11-18 20:57:11 +0000 |
commit | 47df66d7654f515594bdc6e60d8a87a8ebe7a3c6 (patch) | |
tree | 172ca8524576b33d58f9ca9b8bff683c43f2a6c5 /src/soc/intel/icelake | |
parent | d4b89091d2f7c31d80e15d779f6190b7c9883d36 (diff) | |
download | coreboot-47df66d7654f515594bdc6e60d8a87a8ebe7a3c6.tar.xz |
soc/intel/{cnl, icl}: Remove unnecessary __SIMPLE_DEVICE__ check
soc_pch_pirq_init() function is only getting compiled for RAMSTAGE
hence remove unused __SIMPLE_DEVICE__ check.
Change-Id: I7f0ca62170f0af12a251c8c97155de8433a31854
Signed-off-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/29643
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/soc/intel/icelake')
-rw-r--r-- | src/soc/intel/icelake/lpc.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/soc/intel/icelake/lpc.c b/src/soc/intel/icelake/lpc.c index 93d543f444..9bf1b789dd 100644 --- a/src/soc/intel/icelake/lpc.c +++ b/src/soc/intel/icelake/lpc.c @@ -144,6 +144,7 @@ static void pch_enable_ioapic(const struct device *dev) void soc_pch_pirq_init(const struct device *dev) { + struct device *irq_dev; uint8_t pch_interrupt_routing[MAX_PXRC_CONFIG]; pch_interrupt_routing[0] = PCH_IRQ11; @@ -156,11 +157,7 @@ void soc_pch_pirq_init(const struct device *dev) pch_interrupt_routing[7] = PCH_IRQ11; itss_irq_init(pch_interrupt_routing); -#if defined(__SIMPLE_DEVICE__) - pci_devfn_t irq_dev; -#else - struct device *irq_dev; -#endif + for (irq_dev = all_devices; irq_dev; irq_dev = irq_dev->next) { u8 int_pin = 0, int_line = 0; |