Skip to content

Commit

Permalink
um: Convert irq_chips to new functions
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
LKML-Reference: <20110206224515.224027758@linutronix.de>
  • Loading branch information
Thomas Gleixner committed Feb 14, 2011
1 parent 6ea96e7 commit 1d119aa
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions arch/um/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,29 +360,28 @@ EXPORT_SYMBOL(um_request_irq);
EXPORT_SYMBOL(reactivate_fd);

/*
* irq_chip must define (startup || enable) &&
* (shutdown || disable) && end
* irq_chip must define at least enable/disable and ack when
* the edge handler is used.
*/
static void dummy(unsigned int irq)
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,
.disable = dummy,
.enable = dummy,
.ack = dummy,
.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,
.shutdown = dummy, /* never called */
.disable = dummy,
.enable = dummy,
.ack = dummy,
.irq_disable = dummy,
.irq_enable = dummy,
.irq_ack = dummy,
};

void __init init_IRQ(void)
Expand Down

0 comments on commit 1d119aa

Please sign in to comment.