public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: tglx@linutronix.de
To: lethal@linux-sh.org
Cc: akpm@osdl.org, linux-kernel@vger.kernel.org
Subject: [PATCH] SH64:  [PATCH resend] C99 initializers for hw_interrupt_type structures
Date: Sun, 10 Jul 2005 23:47:28 +0200 (CEST)	[thread overview]
Message-ID: <20050710235042.5.patchmail@tglx.tec.linutronix.de> (raw)
In-Reply-To: 1121031634.26713.243.camel@tglx.tec.linutronix.de

Convert the initializers of hw_interrupt_type structures to C99 initializers.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

---
 irq_intc.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)
---
diff -urN --exclude='*~' linux-2.6.13-rc2/arch/sh64/kernel/irq_intc.c linux-2.6.13-rc2-armirq/arch/sh64/kernel/irq_intc.c
--- linux-2.6.13-rc2/arch/sh64/kernel/irq_intc.c	2005-07-09 13:04:23.000000000 +0200
+++ linux-2.6.13-rc2-armirq/arch/sh64/kernel/irq_intc.c	2005-07-09 13:10:42.000000000 +0200
@@ -107,13 +107,13 @@
 static void end_intc_irq(unsigned int irq);
 
 static struct hw_interrupt_type intc_irq_type = {
-	"INTC",
-	startup_intc_irq,
-	shutdown_intc_irq,
-	enable_intc_irq,
-	disable_intc_irq,
-	mask_and_ack_intc,
-	end_intc_irq
+	.typename = "INTC",
+	.startup = startup_intc_irq,
+	.shutdown = shutdown_intc_irq,
+	.enable = enable_intc_irq,
+	.disable = disable_intc_irq,
+	.ack = mask_and_ack_intc,
+	.end = end_intc_irq
 };
 
 static int irlm;		/* IRL mode */

      parent reply	other threads:[~2005-07-10 21:51 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-07-10 21:40 [PATCH resend] C99 initializers for hw_interrupt_type structures Thomas Gleixner
2005-07-10 21:47 ` [PATCH] PPC: " tglx
2005-07-10 21:47 ` [PATCH] SH: " tglx
2005-07-10 21:47 ` [PATCH] MIPS: " tglx
2005-07-11  9:05   ` Ralf Baechle
2005-07-10 21:47 ` [PATCH] V850: " tglx
2005-07-10 21:47 ` tglx [this message]

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=20050710235042.5.patchmail@tglx.tec.linutronix.de \
    --to=tglx@linutronix.de \
    --cc=akpm@osdl.org \
    --cc=lethal@linux-sh.org \
    --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