um: Convert irq_chips to new functions
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>
This commit is contained in:
parent
6ea96e7e49
commit
1d119aa06f
@ -360,10 +360,10 @@ EXPORT_SYMBOL(um_request_irq);
|
|||||||
EXPORT_SYMBOL(reactivate_fd);
|
EXPORT_SYMBOL(reactivate_fd);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* irq_chip must define (startup || enable) &&
|
* irq_chip must define at least enable/disable and ack when
|
||||||
* (shutdown || disable) && end
|
* the edge handler is used.
|
||||||
*/
|
*/
|
||||||
static void dummy(unsigned int irq)
|
static void dummy(struct irq_data *d)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -371,18 +371,17 @@ static void dummy(unsigned int irq)
|
|||||||
static struct irq_chip normal_irq_type = {
|
static struct irq_chip normal_irq_type = {
|
||||||
.name = "SIGIO",
|
.name = "SIGIO",
|
||||||
.release = free_irq_by_irq_and_dev,
|
.release = free_irq_by_irq_and_dev,
|
||||||
.disable = dummy,
|
.irq_disable = dummy,
|
||||||
.enable = dummy,
|
.irq_enable = dummy,
|
||||||
.ack = dummy,
|
.irq_ack = dummy,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct irq_chip SIGVTALRM_irq_type = {
|
static struct irq_chip SIGVTALRM_irq_type = {
|
||||||
.name = "SIGVTALRM",
|
.name = "SIGVTALRM",
|
||||||
.release = free_irq_by_irq_and_dev,
|
.release = free_irq_by_irq_and_dev,
|
||||||
.shutdown = dummy, /* never called */
|
.irq_disable = dummy,
|
||||||
.disable = dummy,
|
.irq_enable = dummy,
|
||||||
.enable = dummy,
|
.irq_ack = dummy,
|
||||||
.ack = dummy,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
void __init init_IRQ(void)
|
void __init init_IRQ(void)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user