mirror of https://gitee.com/openkylin/linux.git
x86, apic: remove SUMMIT_IRQ_DELIVERY_MODE and SUMMIT_IRQ_DEST_MODE
Impact: cleanup They were only used in a single place and obscured the apic_summit template. Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
dcafa4a8c9
commit
82daea6b08
|
@ -24,9 +24,6 @@ static inline const cpumask_t *target_cpus(void)
|
|||
return &cpumask_of_cpu(0);
|
||||
}
|
||||
|
||||
#define SUMMIT_IRQ_DELIVERY_MODE (dest_LowestPrio)
|
||||
#define SUMMIT_IRQ_DEST_MODE 1 /* logical delivery broadcast to all procs */
|
||||
|
||||
static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid)
|
||||
{
|
||||
return 0;
|
||||
|
|
|
@ -44,8 +44,9 @@ struct genapic apic_summit = {
|
|||
.acpi_madt_oem_check = summit_acpi_madt_oem_check,
|
||||
.apic_id_registered = summit_apic_id_registered,
|
||||
|
||||
.irq_delivery_mode = SUMMIT_IRQ_DELIVERY_MODE,
|
||||
.irq_dest_mode = SUMMIT_IRQ_DEST_MODE,
|
||||
.irq_delivery_mode = dest_LowestPrio,
|
||||
/* logical delivery broadcast to all CPUs: */
|
||||
.irq_dest_mode = 1,
|
||||
|
||||
.target_cpus = target_cpus,
|
||||
.ESR_DISABLE = esr_disable,
|
||||
|
|
Loading…
Reference in New Issue