Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=70af26b2d4bc55570ac30b5eced4ff0319e24455
Commit:     70af26b2d4bc55570ac30b5eced4ff0319e24455
Parent:     a24864a1d52a97e345a6bd4862a057f98364d098
Author:     Thomas Gleixner <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 16 01:27:36 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue Oct 16 09:43:09 2007 -0700

    V850: cleanup struct irqaction initializers
    
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
    Cc: Miles Bader <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/v850/kernel/fpga85e2c.c |    5 ++++-
 arch/v850/kernel/time.c      |   11 +++++------
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/arch/v850/kernel/fpga85e2c.c b/arch/v850/kernel/fpga85e2c.c
index 5c49235..ab9cf16 100644
--- a/arch/v850/kernel/fpga85e2c.c
+++ b/arch/v850/kernel/fpga85e2c.c
@@ -160,5 +160,8 @@ static void make_reg_snap (int irq, void *dummy, struct 
pt_regs *regs)
 
 static int reg_snap_dev_id;
 static struct irqaction reg_snap_action = {
-       make_reg_snap, 0, CPU_MASK_NONE, "reg_snap", &reg_snap_dev_id, 0
+       .handler = make_reg_snap,
+       .mask = CPU_MASK_NONE,
+       .name = "reg_snap",
+       .dev_id = &reg_snap_dev_id,
 };
diff --git a/arch/v850/kernel/time.c b/arch/v850/kernel/time.c
index f0905b0..d810c93 100644
--- a/arch/v850/kernel/time.c
+++ b/arch/v850/kernel/time.c
@@ -92,12 +92,11 @@ static irqreturn_t timer_interrupt (int irq, void *dummy, 
struct pt_regs *regs)
 
 static int timer_dev_id;
 static struct irqaction timer_irqaction = {
-       timer_interrupt,
-       IRQF_DISABLED,
-       CPU_MASK_NONE,
-       "timer",
-       &timer_dev_id,
-       NULL
+       .handler = timer_interrupt,
+       .flags = IRQF_DISABLED,
+       .mask = CPU_MASK_NONE,
+       .name = "timer",
+       .dev_id = &timer_dev_id,
 };
 
 void time_init (void)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to