diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-28 08:59:17 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-28 17:20:29 -0500 |
commit | 5b8127277bc4cdca78eda5ee900a314642822ace (patch) | |
tree | 07559a79f03be24bd5cc1df238233b2d63550c94 /arch/x86/mach-generic | |
parent | ca6c8ed4646f8ccaa4f7db618bf69b8b8fb49767 (diff) |
x86, apic: refactor ->apic_id_mask & APIC_ID_MASK
- spread out the namespace on a per driver basis
- get rid of wrapper macros
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic')
-rw-r--r-- | arch/x86/mach-generic/bigsmp.c | 2 | ||||
-rw-r--r-- | arch/x86/mach-generic/default.c | 2 | ||||
-rw-r--r-- | arch/x86/mach-generic/es7000.c | 2 | ||||
-rw-r--r-- | arch/x86/mach-generic/numaq.c | 2 | ||||
-rw-r--r-- | arch/x86/mach-generic/summit.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86/mach-generic/bigsmp.c b/arch/x86/mach-generic/bigsmp.c index 9eca977227c4..1f4ad4f77022 100644 --- a/arch/x86/mach-generic/bigsmp.c +++ b/arch/x86/mach-generic/bigsmp.c | |||
@@ -92,7 +92,7 @@ struct genapic apic_bigsmp = { | |||
92 | 92 | ||
93 | .get_apic_id = bigsmp_get_apic_id, | 93 | .get_apic_id = bigsmp_get_apic_id, |
94 | .set_apic_id = NULL, | 94 | .set_apic_id = NULL, |
95 | .apic_id_mask = APIC_ID_MASK, | 95 | .apic_id_mask = BIGSMP_APIC_ID_MASK, |
96 | 96 | ||
97 | .cpu_mask_to_apicid = cpu_mask_to_apicid, | 97 | .cpu_mask_to_apicid = cpu_mask_to_apicid, |
98 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, | 98 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, |
diff --git a/arch/x86/mach-generic/default.c b/arch/x86/mach-generic/default.c index d51a3f0335ae..239af25615b1 100644 --- a/arch/x86/mach-generic/default.c +++ b/arch/x86/mach-generic/default.c | |||
@@ -73,7 +73,7 @@ struct genapic apic_default = { | |||
73 | 73 | ||
74 | .get_apic_id = default_get_apic_id, | 74 | .get_apic_id = default_get_apic_id, |
75 | .set_apic_id = NULL, | 75 | .set_apic_id = NULL, |
76 | .apic_id_mask = APIC_ID_MASK, | 76 | .apic_id_mask = DEFAULT_APIC_ID_MASK, |
77 | 77 | ||
78 | .cpu_mask_to_apicid = cpu_mask_to_apicid, | 78 | .cpu_mask_to_apicid = cpu_mask_to_apicid, |
79 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, | 79 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, |
diff --git a/arch/x86/mach-generic/es7000.c b/arch/x86/mach-generic/es7000.c index 1944675db629..21fb33eea91b 100644 --- a/arch/x86/mach-generic/es7000.c +++ b/arch/x86/mach-generic/es7000.c | |||
@@ -128,7 +128,7 @@ struct genapic apic_es7000 = { | |||
128 | 128 | ||
129 | .get_apic_id = es7000_get_apic_id, | 129 | .get_apic_id = es7000_get_apic_id, |
130 | .set_apic_id = NULL, | 130 | .set_apic_id = NULL, |
131 | .apic_id_mask = APIC_ID_MASK, | 131 | .apic_id_mask = ES7000_APIC_ID_MASK, |
132 | 132 | ||
133 | .cpu_mask_to_apicid = cpu_mask_to_apicid, | 133 | .cpu_mask_to_apicid = cpu_mask_to_apicid, |
134 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, | 134 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, |
diff --git a/arch/x86/mach-generic/numaq.c b/arch/x86/mach-generic/numaq.c index fcbba84c090f..27d2d1f2d6f0 100644 --- a/arch/x86/mach-generic/numaq.c +++ b/arch/x86/mach-generic/numaq.c | |||
@@ -92,7 +92,7 @@ struct genapic apic_numaq = { | |||
92 | 92 | ||
93 | .get_apic_id = numaq_get_apic_id, | 93 | .get_apic_id = numaq_get_apic_id, |
94 | .set_apic_id = NULL, | 94 | .set_apic_id = NULL, |
95 | .apic_id_mask = APIC_ID_MASK, | 95 | .apic_id_mask = NUMAQ_APIC_ID_MASK, |
96 | 96 | ||
97 | .cpu_mask_to_apicid = cpu_mask_to_apicid, | 97 | .cpu_mask_to_apicid = cpu_mask_to_apicid, |
98 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, | 98 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, |
diff --git a/arch/x86/mach-generic/summit.c b/arch/x86/mach-generic/summit.c index 5650eaf9061f..f24cba1b29da 100644 --- a/arch/x86/mach-generic/summit.c +++ b/arch/x86/mach-generic/summit.c | |||
@@ -72,7 +72,7 @@ struct genapic apic_summit = { | |||
72 | 72 | ||
73 | .get_apic_id = summit_get_apic_id, | 73 | .get_apic_id = summit_get_apic_id, |
74 | .set_apic_id = NULL, | 74 | .set_apic_id = NULL, |
75 | .apic_id_mask = APIC_ID_MASK, | 75 | .apic_id_mask = SUMMIT_APIC_ID_MASK, |
76 | 76 | ||
77 | .cpu_mask_to_apicid = cpu_mask_to_apicid, | 77 | .cpu_mask_to_apicid = cpu_mask_to_apicid, |
78 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, | 78 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, |