aboutsummaryrefslogtreecommitdiffstats
path: root/arch/v850/kernel/fpga85e2c.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2007-10-16 01:27:36 -0700
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-16 09:43:09 -0700
commit70af26b2d4bc55570ac30b5eced4ff0319e24455 (patch)
tree45f6ab78d7dcb363cd224a19d4b5651ed3608f86 /arch/v850/kernel/fpga85e2c.c
parentuml: definitively kill subprocesses on panic (diff)
downloadlinux-dev-70af26b2d4bc55570ac30b5eced4ff0319e24455.tar.xz
linux-dev-70af26b2d4bc55570ac30b5eced4ff0319e24455.zip
V850: cleanup struct irqaction initializers
Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Miles Bader <miles@gnu.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/v850/kernel/fpga85e2c.c')
-rw-r--r--arch/v850/kernel/fpga85e2c.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/v850/kernel/fpga85e2c.c b/arch/v850/kernel/fpga85e2c.c
index 5c4923558a75..ab9cf16a85c8 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,
};