diff options
author | Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com> | 2018-02-22 21:00:45 -0300 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-02-27 08:40:41 +0100 |
commit | dc31b3b76c8a7be9728cd0771a1f17fb896f85b8 (patch) | |
tree | 081724656ebb7348b049ee4942e22f6c3fa30e3f /drivers/gpu/drm/virtio/virtgpu_ttm.c | |
parent | 1a5019f125038817b585f1703823cac256c11a66 (diff) | |
download | linux-dc31b3b76c8a7be9728cd0771a1f17fb896f85b8.tar.gz linux-dc31b3b76c8a7be9728cd0771a1f17fb896f85b8.tar.bz2 linux-dc31b3b76c8a7be9728cd0771a1f17fb896f85b8.zip |
drm/virtio: Replace 'unsigned' for 'unsigned int'
This patch fixes the checkpatch.pl warning:
drivers/gpu/drm/virtio/virtgpu_display.c:64: WARNING: Prefer 'unsigned
int' to bare use of 'unsigned'
...
Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
Link: http://patchwork.freedesktop.org/patch/msgid/ac9c4110785e6519801d44c57d4f05c3e0cdad53.1519343668.git.rodrigosiqueiramelo@gmail.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/virtio/virtgpu_ttm.c')
-rw-r--r-- | drivers/gpu/drm/virtio/virtgpu_ttm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/virtio/virtgpu_ttm.c b/drivers/gpu/drm/virtio/virtgpu_ttm.c index cd4a17a1409a..580323ceeb8a 100644 --- a/drivers/gpu/drm/virtio/virtgpu_ttm.c +++ b/drivers/gpu/drm/virtio/virtgpu_ttm.c @@ -224,7 +224,7 @@ static int virtio_gpu_init_mem_type(struct ttm_bo_device *bdev, uint32_t type, man->default_caching = TTM_PL_FLAG_CACHED; break; default: - DRM_ERROR("Unsupported memory type %u\n", (unsigned)type); + DRM_ERROR("Unsupported memory type %u\n", (unsigned int)type); return -EINVAL; } return 0; |