Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax
In directory usw-pr-cvs1:/tmp/cvs-serv15719/include/asm-vax
Modified Files:
hardirq.h
Log Message:
hardirq_enter -> irq_enter
hardirq_exit -> irq_exit
if everyone else is doing it why can't we? :-)
Index: hardirq.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/hardirq.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hardirq.h 2001/01/18 15:52:28 1.2
+++ hardirq.h 2001/02/22 23:53:36 1.3
@@ -32,8 +32,8 @@
#define hardirq_trylock(cpu) (local_irq_count(cpu) == 0)
#define hardirq_endlock(cpu) do { } while (0)
-#define hardirq_enter(cpu) (local_irq_count(cpu)++)
-#define hardirq_exit(cpu) (local_irq_count(cpu)--)
+#define irq_enter(cpu) (local_irq_count(cpu)++)
+#define irq_exit(cpu) (local_irq_count(cpu)--)
#define synchronize_irq() do { } while (0)
|