diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-09-27 12:26:07 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-09-29 10:04:44 +0000 |
commit | 477647cef59b5da8055f5fd9b7d9990b2cfa59ce (patch) | |
tree | e982181b5e91d00ec989c81f3fb09d09528c40a6 /src/soc/intel/braswell/acpi | |
parent | 2fd1e47313aa3132be1bd8c3210a694980e6e379 (diff) |
{sb,soc}/intel: Drop unused globalnvs.asl methods
These methods are never used in the code. Drop them.
Change-Id: If5568b494f821d2647ada5ae845bcd015708520e
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57984
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/soc/intel/braswell/acpi')
-rw-r--r-- | src/soc/intel/braswell/acpi/globalnvs.asl | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/soc/intel/braswell/acpi/globalnvs.asl b/src/soc/intel/braswell/acpi/globalnvs.asl index f4b3176618..c0839e6e88 100644 --- a/src/soc/intel/braswell/acpi/globalnvs.asl +++ b/src/soc/intel/braswell/acpi/globalnvs.asl @@ -43,31 +43,3 @@ Field (GNVS, ByteAcc, NoLock, Preserve) , 32, /* 0x34 - Top of Low Memory */ CBMC, 32, /* 0x38 - coreboot mem console pointer */ } - -/* Set flag to enable USB charging in S3 */ -Method (S3UE) -{ - Store (One, \S3U0) - Store (One, \S3U1) -} - -/* Set flag to disable USB charging in S3 */ -Method (S3UD) -{ - Store (Zero, \S3U0) - Store (Zero, \S3U1) -} - -/* Set flag to enable USB charging in S5 */ -Method (S5UE) -{ - Store (One, \S5U0) - Store (One, \S5U1) -} - -/* Set flag to disable USB charging in S5 */ -Method (S5UD) -{ - Store (Zero, \S5U0) - Store (Zero, \S5U1) -} |