diff options
author | Dean Nelson <dcn@sgi.com> | 2008-07-29 22:34:02 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-30 09:41:48 -0700 |
commit | 355c54d2e70093f09910d2ecf343023aefc219e1 (patch) | |
tree | 8352cbd64791187614de56f5101e11ab27be4673 | |
parent | 9ca8e40c130c906c1060d105e63628410c860261 (diff) | |
download | op-kernel-dev-355c54d2e70093f09910d2ecf343023aefc219e1.zip op-kernel-dev-355c54d2e70093f09910d2ecf343023aefc219e1.tar.gz |
sgi-xp: define is_shub() and is_uv() macros
Define the is_shub()/is_uv() macros if they've not already been defined.
Signed-off-by: Dean Nelson <dcn@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/misc/sgi-xp/xp.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/misc/sgi-xp/xp.h b/drivers/misc/sgi-xp/xp.h index 03a87a3..83627ea 100644 --- a/drivers/misc/sgi-xp/xp.h +++ b/drivers/misc/sgi-xp/xp.h @@ -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 |