Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26493/kernel
Modified Files:
interrupt.c
Log Message:
- Remove braces.
Index: interrupt.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/interrupt.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- interrupt.c 2 Sep 2004 22:39:39 -0000 1.26
+++ interrupt.c 30 Sep 2004 21:19:02 -0000 1.27
@@ -399,13 +399,12 @@
action = &vec->action;
vec_num = vec->vec_num;
-
+
kstat_cpu(smp_processor_id()).irqs[vec_num]++;
- action->handler(vec_num, action->dev_id, regs);
+ action->handler(vec_num, action->dev_id, regs);
- if (action->flags & SA_SAMPLE_RANDOM) {
- add_interrupt_randomness(vec_num);
- }
+ if (action->flags & SA_SAMPLE_RANDOM)
+ add_interrupt_randomness(vec_num);
}
/* This is called once we know that an interrupt or exception is actually
|