[Patch 01/18] define is_shub() and is_uv() macros

From: Dean Nelson
Date: Fri Jun 06 2008 - 12:42:25 EST


Define the is_shub()/is_uv() macros if they've not already been defined.

Signed-off-by: Dean Nelson <dcn@xxxxxxx>

---

drivers/misc/sgi-xp/xp.h | 16 ++++++++++++++++
1 file changed, 16 insertions(+)

Index: linux-2.6/drivers/misc/sgi-xp/xp.h
===================================================================
--- linux-2.6.orig/drivers/misc/sgi-xp/xp.h 2008-04-30 20:38:56.000000000 -0500
+++ linux-2.6/drivers/misc/sgi-xp/xp.h 2008-05-01 08:31:32.494004605 -0500
@@ -25,6 +25,22 @@
#define DBUG_ON(condition)
#endif

+#ifndef is_shub1
+#define is_shub1() 0
+#endif
+
+#ifndef is_shub2
+#define is_shub2() 0
+#endif
+
+#ifndef is_shub
+#define is_shub() (is_shub1() || is_shub2())
+#endif
+
+#ifndef is_uv
+#define is_uv() 0
+#endif
+
/*
* Define the maximum number of logically defined partitions the system
* can support. It is constrained by the maximum number of hardware
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/