diff options
author | Richard Weinberger <richard@nod.at> | 2012-04-17 16:37:14 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2012-05-21 15:09:36 -0400 |
commit | 8e514b2a811c25434ac5fec13c09c1b82cafb0c9 (patch) | |
tree | 6ff5fc4977d49f5abe133c672815710e7e5ae512 /arch/um/kernel | |
parent | fa7a0449e0ea6588f64c06a045ea8728280f3457 (diff) |
um: Remove usage of irq_chip->release()
UML does no longer need irq_chip->release().
Signed-off-by: Richard Weinberger <richard@nod.at>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/um/kernel')
-rw-r--r-- | arch/um/kernel/irq.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/um/kernel/irq.c b/arch/um/kernel/irq.c index 47a09eea49ed..00506c3d5d6e 100644 --- a/arch/um/kernel/irq.c +++ b/arch/um/kernel/irq.c | |||
@@ -334,7 +334,6 @@ static void dummy(struct irq_data *d) | |||
334 | /* This is used for everything else than the timer. */ | 334 | /* This is used for everything else than the timer. */ |
335 | static struct irq_chip normal_irq_type = { | 335 | static struct irq_chip normal_irq_type = { |
336 | .name = "SIGIO", | 336 | .name = "SIGIO", |
337 | .release = free_irq_by_irq_and_dev, | ||
338 | .irq_disable = dummy, | 337 | .irq_disable = dummy, |
339 | .irq_enable = dummy, | 338 | .irq_enable = dummy, |
340 | .irq_ack = dummy, | 339 | .irq_ack = dummy, |
@@ -342,7 +341,6 @@ static struct irq_chip normal_irq_type = { | |||
342 | 341 | ||
343 | static struct irq_chip SIGVTALRM_irq_type = { | 342 | static struct irq_chip SIGVTALRM_irq_type = { |
344 | .name = "SIGVTALRM", | 343 | .name = "SIGVTALRM", |
345 | .release = free_irq_by_irq_and_dev, | ||
346 | .irq_disable = dummy, | 344 | .irq_disable = dummy, |
347 | .irq_enable = dummy, | 345 | .irq_enable = dummy, |
348 | .irq_ack = dummy, | 346 | .irq_ack = dummy, |