]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
platform/x86/amd/hsmp: Fix typo in error message
authorAlok Tiwari <alok.a.tiwari@oracle.com>
Tue, 10 Mar 2026 12:53:05 +0000 (05:53 -0700)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Mon, 23 Mar 2026 12:49:02 +0000 (14:49 +0200)
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>
drivers/platform/x86/amd/hsmp/hsmp.c

index 19f82c1d30905921c3f1b76e8e0fce45f8890c1c..631ffc0978d16d935de707acfa11653ae46bf4aa 100644 (file)
@@ -117,7 +117,7 @@ static int __hsmp_send_message(struct hsmp_socket *sock, struct hsmp_message *ms
        }
 
        if (unlikely(mbox_status == HSMP_STATUS_NOT_READY)) {
-               dev_err(sock->dev, "Message ID 0x%X failure : SMU tmeout (status = 0x%X)\n",
+               dev_err(sock->dev, "Message ID 0x%X failure : SMU timeout (status = 0x%X)\n",
                        msg->msg_id, mbox_status);
                return -ETIMEDOUT;
        } else if (unlikely(mbox_status == HSMP_ERR_INVALID_MSG)) {