[PATCH] tpm: Clarify "auth session active" message
From: Andrew Sayers
Date: Mon Mar 10 2025 - 11:41:01 EST
Without context, the obvious reading of "auth session is active" is
"auth session successfully activated". In fact, this message means
"redundant extra attempt to activate auth session".
Signed-off-by: Andrew Sayers <kernel.org@xxxxxxxxxxxxxxx>
---
drivers/char/tpm/tpm2-sessions.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/char/tpm/tpm2-sessions.c b/drivers/char/tpm/tpm2-sessions.c
index 3f89635ba5e8..21589a75ed04 100644
--- a/drivers/char/tpm/tpm2-sessions.c
+++ b/drivers/char/tpm/tpm2-sessions.c
@@ -982,7 +982,7 @@ int tpm2_start_auth_session(struct tpm_chip *chip)
int rc;
if (chip->auth) {
- dev_dbg_once(&chip->dev, "auth session is active\n");
+ dev_dbg_once(&chip->dev, "auth session already active\n");
return 0;
}
--
2.47.2