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>
This commit is contained in:
parent
d4b89091d2
commit
47df66d765
|
@ -145,6 +145,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;
|
||||
|
@ -157,11 +158,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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue