aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/uv/bios.h
diff options
context:
space:
mode:
authorRuss Anderson <rja@sgi.com>2008-10-21 15:09:51 -0400
committerIngo Molnar <mingo@elte.hu>2008-10-22 02:38:58 -0400
commitb0f209898f1a177bd503d49215b8c6628797a81c (patch)
treeef91fd16a082921f480ede15029d9ea51cd57827 /include/asm-x86/uv/bios.h
parent2515ddc6db8eb49a79f0fe5e67ff09ac7c81eab4 (diff)
x86, uv: use consistent names for region size and conherence id on x86 and ia64
Use consistent names for region size and conherence id on x86 and ia64. The SGI xp drivers are used on both ia64 and x86. Using the same names (sn_coherency_id, sn_region_size) simplies the driver code. Signed-off-by: Russ Anderson <rja@sgi.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/uv/bios.h')
-rw-r--r--include/asm-x86/uv/bios.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-x86/uv/bios.h b/include/asm-x86/uv/bios.h
index 215f1969c266..7b3d7022c639 100644
--- a/include/asm-x86/uv/bios.h
+++ b/include/asm-x86/uv/bios.h
@@ -85,9 +85,9 @@ extern void uv_bios_init(void);
85 85
86extern int uv_type; 86extern int uv_type;
87extern long sn_partition_id; 87extern long sn_partition_id;
88extern long uv_coherency_id; 88extern long sn_coherency_id;
89extern long uv_region_size; 89extern long sn_region_size;
90#define partition_coherence_id() (uv_coherency_id) 90#define partition_coherence_id() (sn_coherency_id)
91 91
92extern struct kobject *sgi_uv_kobj; /* /sys/firmware/sgi_uv */ 92extern struct kobject *sgi_uv_kobj; /* /sys/firmware/sgi_uv */
93 93