Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit a0334bf

Browse files
committed
acpi: Provide ia64 dummy implementation of acpi_proc_quirk_mwait_check()
Commit 0a0e2ea ("ACPI: processor: Move MWAIT quirk out of acpi_processor.c") moved the MWAIT quirk code into arch/x86 but left calls to it in the ACPI PDC processor code that is shared with Itanium, breaking the latter build. Since the quirk is specific to a certain x86-based platform, stub out the function acpi_proc_quirk_mwait_check() when building for ia64. Fixes: 0a0e2ea ("ACPI: processor: Move MWAIT quirk out of acpi_processor.c") Signed-off-by: Ard Biesheuvel <[email protected]>
1 parent 0bb80ec commit a0334bf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

arch/ia64/kernel/acpi.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -907,3 +907,7 @@ EXPORT_SYMBOL(acpi_unregister_ioapic);
907907
* TBD when IA64 starts to support suspend...
908908
*/
909909
int acpi_suspend_lowlevel(void) { return 0; }
910+
911+
void acpi_proc_quirk_mwait_check(void)
912+
{
913+
}

0 commit comments

Comments
 (0)