drm/radeon: remove h from printk format specifier
authorTom Rix <trix@redhat.com>
Tue, 15 Dec 2020 14:42:23 +0000 (06:42 -0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 15 Dec 2020 16:36:00 +0000 (11:36 -0500)
See Documentation/core-api/printk-formats.rst.
h should no longer be used in the format specifier for printk.

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/radeon_uvd.c
drivers/gpu/drm/radeon/radeon_vce.c

index 57fb3eb..39c1c33 100644 (file)
@@ -155,7 +155,7 @@ int radeon_uvd_init(struct radeon_device *rdev)
                        family_id = le32_to_cpu(hdr->ucode_version) & 0xff;
                        version_major = (le32_to_cpu(hdr->ucode_version) >> 24) & 0xff;
                        version_minor = (le32_to_cpu(hdr->ucode_version) >> 8) & 0xff;
-                       DRM_INFO("Found UVD firmware Version: %hu.%hu Family ID: %hu\n",
+                       DRM_INFO("Found UVD firmware Version: %u.%u Family ID: %u\n",
                                 version_major, version_minor, family_id);
 
                        /*
index 5e80064..a450497 100644 (file)
@@ -122,7 +122,7 @@ int radeon_vce_init(struct radeon_device *rdev)
        if (sscanf(c, "%2u]", &rdev->vce.fb_version) != 1)
                return -EINVAL;
 
-       DRM_INFO("Found VCE firmware/feedback version %hhd.%hhd.%hhd / %d!\n",
+       DRM_INFO("Found VCE firmware/feedback version %d.%d.%d / %d!\n",
                 start, mid, end, rdev->vce.fb_version);
 
        rdev->vce.fw_version = (start << 24) | (mid << 16) | (end << 8);