drm/amd/pm: Fix spelling mistake "firwmare" -> "firmware"
authorColin Ian King <colin.king@canonical.com>
Tue, 17 Aug 2021 14:35:14 +0000 (15:35 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 18 Aug 2021 22:26:10 +0000 (18:26 -0400)
There is a spelling mistake in a dev_err error message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0.c

index 5d2605d..a0e50f2 100644 (file)
@@ -311,7 +311,7 @@ static int smu_v13_0_get_pptable_from_firmware(struct smu_context *smu, void **t
        version_major = le16_to_cpu(hdr->header.header_version_major);
        version_minor = le16_to_cpu(hdr->header.header_version_minor);
        if (version_major != 2) {
-               dev_err(adev->dev, "Unsupported smu firwmare version %d.%d\n",
+               dev_err(adev->dev, "Unsupported smu firmware version %d.%d\n",
                        version_major, version_minor);
                return -EINVAL;
        }