aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/srat.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2011-12-13 11:46:21 +0100
committerJan Beulich <jbeulich@suse.com>2011-12-13 11:46:21 +0100
commit1b0a6f0d06c83d10a5583fe52c42bc45c2e277ab (patch)
tree1035f46a187ed3a57493923c9bb66047958840b0 /xen/arch/x86/srat.c
parent3c419d3521b66c78e22da14fcf287b586e5df4b7 (diff)
downloadxen-1b0a6f0d06c83d10a5583fe52c42bc45c2e277ab.tar.gz
xen-1b0a6f0d06c83d10a5583fe52c42bc45c2e277ab.tar.bz2
xen-1b0a6f0d06c83d10a5583fe52c42bc45c2e277ab.zip
ACPI: eliminate duplicate MADT parsing and unused SBF definitions
Use their proper counterparts in include/acpi/actbl*.h instead. Signed-off-by: Jan Beulich <jbeulich@suse.com> Acked-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/arch/x86/srat.c')
-rw-r--r--xen/arch/x86/srat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xen/arch/x86/srat.c b/xen/arch/x86/srat.c
index 20cfedba3c..f46e05380c 100644
--- a/xen/arch/x86/srat.c
+++ b/xen/arch/x86/srat.c
@@ -396,7 +396,8 @@ void __init srat_parse_regions(u64 addr)
return;
srat_region_mask = fill_mask(addr - 1);
- acpi_table_parse_srat(ACPI_SRAT_MEMORY_AFFINITY, srat_parse_region, 0);
+ acpi_table_parse_srat(ACPI_SRAT_TYPE_MEMORY_AFFINITY,
+ srat_parse_region, 0);
for (mask = srat_region_mask, i = 0; mask && i < e820.nr_map; i++) {
if (e820.map[i].type != E820_RAM)