Skip to content

Commit

Permalink
x86, apic: remove SUMMIT_IRQ_DELIVERY_MODE and SUMMIT_IRQ_DEST_MODE
Browse files Browse the repository at this point in the history
Impact: cleanup

They were only used in a single place and obscured the apic_summit template.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Jan 28, 2009
1 parent dcafa4a commit 82daea6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 0 additions & 3 deletions arch/x86/include/asm/summit/apic.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
5 changes: 3 additions & 2 deletions arch/x86/mach-generic/summit.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 82daea6

Please sign in to comment.