diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2013-11-19 16:07:46 -0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-11-25 23:40:13 +0100 |
commit | 680b0ab72a1db04d4ce5be52131869e3d5d0135f (patch) | |
tree | 261b2000b31dd764e7eb0149a3659b91df7ca043 /src/mainboard | |
parent | c593999a0ad9b9f19c8171f6229faa191d055491 (diff) |
baskingridge: drop incorrect USB handling code
These GPIO accesses were copied by accident and don't
make sense for the baskingridge board.
Change-Id: I03bfc2cf97b6056a746a6c1a27308823ecaa9637
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/4204
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/intel/baskingridge/acpi/platform.asl | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mainboard/intel/baskingridge/acpi/platform.asl b/src/mainboard/intel/baskingridge/acpi/platform.asl index fea92d05bd..9474b0adf2 100644 --- a/src/mainboard/intel/baskingridge/acpi/platform.asl +++ b/src/mainboard/intel/baskingridge/acpi/platform.asl @@ -62,19 +62,6 @@ Method(_PIC, 1) Method(_PTS,1) { - // NVS has a flag to determine USB policy in S3 - if (S3U0) { - Store (One, GP47) // Enable USB0 - } Else { - Store (Zero, GP47) // Disable USB0 - } - - // NVS has a flag to determine USB policy in S3 - if (S3U1) { - Store (One, GP56) // Enable USB1 - } Else { - Store (Zero, GP56) // Disable USB1 - } } /* The _WAK method is called on system wakeup */ |