summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMAEDA Naoaki <maeda.naoaki@jp.fujitsu.com>2005-12-01 00:00:24 +0100
committerLen Brown <len.brown@intel.com>2005-12-01 00:02:33 +0100
commitc780f964902a8c4e7f702ff3e0a2b754e82b3ca3 (patch)
treedef3f0332da8a9d5a7717351c5da28c6c7d9b381
parent[ACPI] clean up ACPICA 20050916's rscalc typedef syntax (diff)
downloadlinux-c780f964902a8c4e7f702ff3e0a2b754e82b3ca3.tar.xz
linux-c780f964902a8c4e7f702ff3e0a2b754e82b3ca3.zip
[ACPI] ia64 build fix
arch/ia64/kernel/acpi-ext.c: In function `acpi_vendor_resource_match': arch/ia64/kernel/acpi-ext.c:38: error: structure has no member named `id' Signed-off-by: MAEDA Naoaki <maeda.naoaki@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r--arch/ia64/kernel/acpi-ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/acpi-ext.c b/arch/ia64/kernel/acpi-ext.c
index 13a5b3b49bf8..a146016d7ad7 100644
--- a/arch/ia64/kernel/acpi-ext.c
+++ b/arch/ia64/kernel/acpi-ext.c
@@ -35,7 +35,7 @@ acpi_vendor_resource_match(struct acpi_resource *resource, void *context)
struct acpi_vendor_descriptor *descriptor;
u32 length;
- if (resource->id != ACPI_RSTYPE_VENDOR)
+ if (resource->type != ACPI_RSTYPE_VENDOR)
return AE_OK;
vendor = (struct acpi_resource_vendor *)&resource->data;