From: MAEDA Naoaki This patch fix the following compile error on ia64. 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 Cc: "Brown, Len" Signed-off-by: Andrew Morton --- arch/ia64/kernel/acpi-ext.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/ia64/kernel/acpi-ext.c~git-acpi-build-fix-3 arch/ia64/kernel/acpi-ext.c --- 25/arch/ia64/kernel/acpi-ext.c~git-acpi-build-fix-3 Fri Oct 28 14:59:06 2005 +++ 25-akpm/arch/ia64/kernel/acpi-ext.c Fri Oct 28 14:59:06 2005 @@ -35,7 +35,7 @@ acpi_vendor_resource_match(struct acpi_r 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; _