Skip to content

Commit

Permalink
um: Remove usage of irq_chip->release()
Browse files Browse the repository at this point in the history
UML does no longer need irq_chip->release().

Signed-off-by: Richard Weinberger <richard@nod.at>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Richard Weinberger committed May 21, 2012
1 parent fa7a044 commit 8e514b2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions arch/um/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,15 +334,13 @@ static void dummy(struct irq_data *d)
/* This is used for everything else than the timer. */
static struct irq_chip normal_irq_type = {
.name = "SIGIO",
.release = free_irq_by_irq_and_dev,
.irq_disable = dummy,
.irq_enable = dummy,
.irq_ack = dummy,
};

static struct irq_chip SIGVTALRM_irq_type = {
.name = "SIGVTALRM",
.release = free_irq_by_irq_and_dev,
.irq_disable = dummy,
.irq_enable = dummy,
.irq_ack = dummy,
Expand Down

0 comments on commit 8e514b2

Please sign in to comment.