public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: LKML <linux-kernel@vger.kernel.org>
Cc: Jeff Dike <jdike@addtoit.com>
Subject: [patch 2/4] um: Convert irq_chips to new functions
Date: Sun, 06 Feb 2011 22:45:34 -0000	[thread overview]
Message-ID: <20110206224515.224027758@linutronix.de> (raw)
In-Reply-To: 20110206224358.096841291@linutronix.de

[-- Attachment #1: um-convert-irq-chips.patch --]
[-- Type: text/plain, Size: 1285 bytes --]

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
 arch/um/kernel/irq.c |   19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

Index: linux-next/arch/um/kernel/irq.c
===================================================================
--- linux-next.orig/arch/um/kernel/irq.c
+++ linux-next/arch/um/kernel/irq.c
@@ -360,10 +360,10 @@ 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)
 {
 }
 
@@ -371,18 +371,17 @@ static void dummy(unsigned int irq)
 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)



  parent reply	other threads:[~2011-02-06 22:46 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-06 22:45 [patch 0/4] UML: Convert irq_chips and use proper accessors Thomas Gleixner
2011-02-06 22:45 ` [patch 1/4] um: Remove stale irq_chip.end Thomas Gleixner
2011-02-14 18:39   ` [tip:um/irq] " tip-bot for Thomas Gleixner
2011-02-06 22:45 ` Thomas Gleixner [this message]
2011-02-14 18:40   ` [tip:um/irq] um: Convert irq_chips to new functions tip-bot for Thomas Gleixner
2011-02-06 22:45 ` [patch 3/4] um: Use proper accessors in show_interrupts() Thomas Gleixner
2011-02-14 18:40   ` [tip:um/irq] " tip-bot for Thomas Gleixner
2011-02-06 22:45 ` [patch 4/4] um: Select GENERIC_HARDIRQS_NO_DEPRECATED Thomas Gleixner
2011-02-14 18:41   ` [tip:um/irq] " tip-bot for Thomas Gleixner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110206224515.224027758@linutronix.de \
    --to=tglx@linutronix.de \
    --cc=jdike@addtoit.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox