Update of /cvsroot/linux-mips/linux/include/asm-mips
In directory usw-pr-cvs1:/tmp/cvs-serv7832/asm-mips
Modified Files:
system.h
Log Message:
Remove semicolons from macro definitions.
Index: system.h
===================================================================
RCS file: /cvsroot/linux-mips/linux/include/asm-mips/system.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- system.h 2002/01/28 20:52:33 1.7
+++ system.h 2002/02/05 17:22:20 1.8
@@ -98,9 +98,9 @@
"xori\t$1, 1\n\t"
".set\tnoreorder\n\t"
"mtc0\t$1, $12\n\t"
- "nop\n\t"
- "nop\n\t"
- "nop\n\t"
+ "sll\t$0, $0, 1\t\t\t# nop\n\t"
+ "sll\t$0, $0, 1\t\t\t# nop\n\t"
+ "sll\t$0, $0, 1\t\t\t# nop\n\t"
".set\tpop\n\t"
".endm");
@@ -161,10 +161,10 @@
#endif /* SMP */
/* For spinlocks etc */
-#define local_irq_save(x) __save_and_cli(x);
-#define local_irq_restore(x) __restore_flags(x);
-#define local_irq_disable() __cli();
-#define local_irq_enable() __sti();
+#define local_irq_save(x) __save_and_cli(x)
+#define local_irq_restore(x) __restore_flags(x)
+#define local_irq_disable() __cli()
+#define local_irq_enable() __sti()
/*
* These are probably defined overly paranoid ...
|