diff options
author | Len Brown <len.brown@intel.com> | 2005-11-30 21:03:21 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-11-30 21:03:56 -0500 |
commit | 378b2556f4e09fa6f87ff0cb5c4395ff28257d02 (patch) | |
tree | 3671b6b341bf8932813abfa3b8c01c3b08da89ea | |
parent | c780f964902a8c4e7f702ff3e0a2b754e82b3ca3 (diff) |
[ACPI] 8250_acpi.c buildfix
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/serial/8250_acpi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/serial/8250_acpi.c b/drivers/serial/8250_acpi.c index a802bdce6e5d..36681ba7b033 100644 --- a/drivers/serial/8250_acpi.c +++ b/drivers/serial/8250_acpi.c | |||
@@ -83,11 +83,11 @@ static acpi_status acpi_serial_resource(struct acpi_resource *res, void *data) | |||
83 | status = acpi_resource_to_address64(res, &addr); | 83 | status = acpi_resource_to_address64(res, &addr); |
84 | if (ACPI_SUCCESS(status)) | 84 | if (ACPI_SUCCESS(status)) |
85 | return acpi_serial_mmio(port, &addr); | 85 | return acpi_serial_mmio(port, &addr); |
86 | else if (res->id == ACPI_RSTYPE_IO) | 86 | else if (res->type == ACPI_RSTYPE_IO) |
87 | return acpi_serial_port(port, &res->data.io); | 87 | return acpi_serial_port(port, &res->data.io); |
88 | else if (res->id == ACPI_RSTYPE_EXT_IRQ) | 88 | else if (res->type == ACPI_RSTYPE_EXT_IRQ) |
89 | return acpi_serial_ext_irq(port, &res->data.extended_irq); | 89 | return acpi_serial_ext_irq(port, &res->data.extended_irq); |
90 | else if (res->id == ACPI_RSTYPE_IRQ) | 90 | else if (res->type == ACPI_RSTYPE_IRQ) |
91 | return acpi_serial_irq(port, &res->data.irq); | 91 | return acpi_serial_irq(port, &res->data.irq); |
92 | return AE_OK; | 92 | return AE_OK; |
93 | } | 93 | } |