diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-09-27 12:11:14 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-09-29 10:04:27 +0000 |
commit | 286c771657036152302136369fb067fd98477cd5 (patch) | |
tree | d78cd948ee363fc49d1edac322cdd479565d93bf /src/soc/intel/baytrail | |
parent | 61be50dafb308f4b54a4ec329c324e2c89048f98 (diff) |
{sb,soc}/intel: Drop LCKF from GNVS
This field is never used in the code. Drop it.
Change-Id: I88207ec369ab83823ef2f3fc40f68a0980ce9663
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57982
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/soc/intel/baytrail')
-rw-r--r-- | src/soc/intel/baytrail/acpi/globalnvs.asl | 2 | ||||
-rw-r--r-- | src/soc/intel/baytrail/include/soc/nvs.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/baytrail/acpi/globalnvs.asl b/src/soc/intel/baytrail/acpi/globalnvs.asl index 8ae426cfae..99cd38094b 100644 --- a/src/soc/intel/baytrail/acpi/globalnvs.asl +++ b/src/soc/intel/baytrail/acpi/globalnvs.asl @@ -12,7 +12,7 @@ Field (GNVS, ByteAcc, NoLock, Preserve) SCIF, 8, /* 0x05 - SCI function */ PRM2, 8, /* 0x06 - SCI function parameter */ PRM3, 8, /* 0x07 - SCI function parameter */ - LCKF, 8, /* 0x08 - Global Lock function for EC */ + , 8, /* 0x08 - Global Lock function for EC */ PRM4, 8, /* 0x09 - Lock function parameter */ PRM5, 8, /* 0x0a - Lock function parameter */ P80D, 32, /* 0x0b - Debug port (IO 0x80) value */ diff --git a/src/soc/intel/baytrail/include/soc/nvs.h b/src/soc/intel/baytrail/include/soc/nvs.h index 52a744729a..cd5c630c93 100644 --- a/src/soc/intel/baytrail/include/soc/nvs.h +++ b/src/soc/intel/baytrail/include/soc/nvs.h @@ -14,7 +14,7 @@ struct __packed global_nvs { u8 scif; /* 0x05 - SCI function call (via _L00) */ u8 prm2; /* 0x06 - SCI function call parameter */ u8 prm3; /* 0x07 - SCI function call parameter */ - u8 lckf; /* 0x08 - Global Lock function for EC */ + u8 unused_was_lckf; /* 0x08 - Global Lock function for EC */ u8 prm4; /* 0x09 - Lock function parameter */ u8 prm5; /* 0x0a - Lock function parameter */ u32 p80d; /* 0x0b - Debug port (IO 0x80) value */ |