Commit 22e38ca7 authored by Colin Ian King's avatar Colin Ian King Committed by Rafael J. Wysocki

ACPICA: debugger: fix spelling mistake "adress" -> "address"

ACPICA commit 7aa72c5fdf75c5b80adf758980e06bcafb7f8670

There is a spelling mistake in an error message. Fix it.

Link: https://github.com/acpica/acpica/commit/7aa72c5fSigned-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarErik Kaneda <erik.kaneda@intel.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent d1eef1c6
...@@ -816,7 +816,7 @@ acpi_db_command_dispatch(char *input_buffer, ...@@ -816,7 +816,7 @@ acpi_db_command_dispatch(char *input_buffer,
if (ACPI_FAILURE(status) if (ACPI_FAILURE(status)
|| temp64 >= ACPI_NUM_PREDEFINED_REGIONS) { || temp64 >= ACPI_NUM_PREDEFINED_REGIONS) {
acpi_os_printf acpi_os_printf
("Invalid adress space ID: must be between 0 and %u inclusive\n", ("Invalid address space ID: must be between 0 and %u inclusive\n",
ACPI_NUM_PREDEFINED_REGIONS - 1); ACPI_NUM_PREDEFINED_REGIONS - 1);
return (AE_OK); return (AE_OK);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment