Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20814/include/asm-vax
Modified Files:
mv.h
Log Message:
- CQBIC support for ka660.
- By James W. Laferriere
Index: mv.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mv.h,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- mv.h 3 Oct 2005 12:05:15 -0000 1.34
+++ mv.h 21 Oct 2005 07:22:38 -0000 1.35
@@ -188,6 +188,14 @@
#endif
}
+static inline int is_ka660(void) {
+#ifdef CONFIG_CPU_KA660
+ return mv == &mv_ka660;
+#else
+ return 0;
+#endif
+}
+
static inline int is_vxt(void) {
#ifdef CONFIG_CPU_VXT
return mv == &mv_vxt;
|