Skip to content

Commit 7ff61be

Browse files
aloktiwaij-intel
authored andcommitted
platform/x86/amd/hsmp: Fix typo in error message
Fix a typo in the HSMP error message where "tmeout" should be "timeout". Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com> Link: https://patch.msgid.link/20260310125307.700108-1-alok.a.tiwari@oracle.com Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
1 parent 2061f7b commit 7ff61be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • drivers/platform/x86/amd/hsmp

drivers/platform/x86/amd/hsmp/hsmp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ static int __hsmp_send_message(struct hsmp_socket *sock, struct hsmp_message *ms
117117
}
118118

119119
if (unlikely(mbox_status == HSMP_STATUS_NOT_READY)) {
120-
dev_err(sock->dev, "Message ID 0x%X failure : SMU tmeout (status = 0x%X)\n",
120+
dev_err(sock->dev, "Message ID 0x%X failure : SMU timeout (status = 0x%X)\n",
121121
msg->msg_id, mbox_status);
122122
return -ETIMEDOUT;
123123
} else if (unlikely(mbox_status == HSMP_ERR_INVALID_MSG)) {

0 commit comments

Comments
 (0)