Skip to content

Commit

Permalink
x86, irq: Move irq_remapped out of x86 core code
Browse files Browse the repository at this point in the history
The irq_remapped function is only used in IOMMU code after
the last patch. So move its definition there too.

Signed-off-by: Joerg Roedel <joro@8bytes.org>
Acked-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
  • Loading branch information
Joerg Roedel committed Jan 28, 2013
1 parent da16532 commit a1bb20c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
10 changes: 0 additions & 10 deletions arch/x86/include/asm/irq_remapping.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ extern bool setup_remapped_irq(int irq,
struct irq_cfg *cfg,
struct irq_chip *chip);

static inline bool irq_remapped(struct irq_cfg *cfg)
{
return (cfg->remapped == 1);
}

void irq_remap_modify_chip_defaults(struct irq_chip *chip);

#else /* CONFIG_IRQ_REMAP */
Expand Down Expand Up @@ -87,11 +82,6 @@ static inline void panic_if_irq_remap(const char *msg)
{
}

static inline bool irq_remapped(struct irq_cfg *cfg)
{
return false;
}

static inline void irq_remap_modify_chip_defaults(struct irq_chip *chip)
{
}
Expand Down
5 changes: 5 additions & 0 deletions drivers/iommu/irq_remapping.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ static int set_remapped_irq_affinity(struct irq_data *data,
const struct cpumask *mask,
bool force);

static bool irq_remapped(struct irq_cfg *cfg)
{
return (cfg->remapped == 1);
}

static void irq_remapping_disable_io_apic(void)
{
/*
Expand Down

0 comments on commit a1bb20c

Please sign in to comment.