diff options
Diffstat (limited to 'src/mainboard/asus')
-rw-r--r-- | src/mainboard/asus/p8x7x-series/acpi/platform.asl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mainboard/asus/p8x7x-series/acpi/platform.asl b/src/mainboard/asus/p8x7x-series/acpi/platform.asl index 7da03bfddd..b16ced504c 100644 --- a/src/mainboard/asus/p8x7x-series/acpi/platform.asl +++ b/src/mainboard/asus/p8x7x-series/acpi/platform.asl @@ -2,9 +2,19 @@ Method(_PTS, 1) { +#if (CONFIG(BOARD_ASUS_P8Z77_M) || CONFIG(BOARD_ASUS_P8Z77_M_PRO)) + /* blink power LED if not turning off */ + If (Arg0 != 0x05) + { + GB27 = 1 + } +#endif } Method(_WAK, 1) { +#if (CONFIG(BOARD_ASUS_P8Z77_M) || CONFIG(BOARD_ASUS_P8Z77_M_PRO)) + GB27 = 0 +#endif Return(Package(){0, 0}) } |