Skip to content

Commit bd7a94c

Browse files
aubreylirafaeljw
authored andcommitted
ACPI: Correct \_SB._OSC bit definition for PRM
According to Platform Runtime Mechanism Specification v1.0 [1], Page 42, \_SB._OSC bit 21 is used to indicate OS support for PRM. Update the definition of the PRM support bit in the code to match the specification. Link: https://uefi.org/sites/default/files/resources/Platform%20Runtime%20Mechanism%20-%20with%20legal%20notice.pdf # [1] Fixes: 60faa8f ("ACPI: Add \_SB._OSC bit for PRM") Signed-off-by: Aubrey Li <[email protected]> [ rjw: Changelog edits ] Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 9b52363 commit bd7a94c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/acpi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,8 +551,8 @@ acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context);
551551
#define OSC_SB_OSLPI_SUPPORT 0x00000100
552552
#define OSC_SB_CPC_DIVERSE_HIGH_SUPPORT 0x00001000
553553
#define OSC_SB_GENERIC_INITIATOR_SUPPORT 0x00002000
554-
#define OSC_SB_PRM_SUPPORT 0x00020000
555554
#define OSC_SB_NATIVE_USB4_SUPPORT 0x00040000
555+
#define OSC_SB_PRM_SUPPORT 0x00200000
556556

557557
extern bool osc_sb_apei_support_acked;
558558
extern bool osc_pc_lpi_support_confirmed;

0 commit comments

Comments
 (0)