diff options
author | Mark Pearson <mpearson-lenovo@squebb.ca> | 2024-10-24 15:55:21 -0400 |
---|---|---|
committer | Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> | 2024-10-29 13:54:28 +0200 |
commit | b39e8ece931a4b4f64cdf9e75fffd6e82828e471 (patch) | |
tree | 862a06cf513d5d72c45c0207cc608064543a4cb5 /drivers/platform/x86/think-lmi.h | |
parent | a7d30cb75b0b3b243f57fd8dab4992a6a40f917e (diff) | |
download | lwn-b39e8ece931a4b4f64cdf9e75fffd6e82828e471.tar.gz lwn-b39e8ece931a4b4f64cdf9e75fffd6e82828e471.zip |
platform/x86: think-lmi: improve check if BIOS account security enabled
Improve determination of whether authentication account is enabled by
checking if either password or certificate is enabled.
Renamed valid to pwd_enabled for better readability.
Signed-off-by: Mark Pearson <mpearson-lenovo@squebb.ca>
Link: https://lore.kernel.org/r/20241024195536.6992-1-mpearson-lenovo@squebb.ca
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86/think-lmi.h')
-rw-r--r-- | drivers/platform/x86/think-lmi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/think-lmi.h b/drivers/platform/x86/think-lmi.h index e1975ffebeb4..4728f40143a3 100644 --- a/drivers/platform/x86/think-lmi.h +++ b/drivers/platform/x86/think-lmi.h @@ -65,7 +65,7 @@ struct tlmi_pwdcfg { /* password setting details */ struct tlmi_pwd_setting { struct kobject kobj; - bool valid; + bool pwd_enabled; char password[TLMI_PWD_BUFSIZE]; const char *pwd_type; const char *role; |