Commit d50d1603 authored by Luo Jiaxing's avatar Luo Jiaxing Committed by Karol Herbst

drm/nouveau/kms: delete an useless function call in nouveau_framebuffer_new()

nouveau_framebuffer_new() call drm_format_info_plane_width() to get a width
of plane, but width is not used then, so it's a useless function call here.
Signed-off-by: default avatarLuo Jiaxing <luojiaxing@huawei.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
Reviewed-by: default avatarKarol Herbst <kherbst@redhat.com>
Signed-off-by: default avatarKarol Herbst <kherbst@redhat.com>
Link: https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests/10
parent 606be062
...@@ -306,7 +306,7 @@ nouveau_framebuffer_new(struct drm_device *dev, ...@@ -306,7 +306,7 @@ nouveau_framebuffer_new(struct drm_device *dev,
struct nouveau_bo *nvbo = nouveau_gem_object(gem); struct nouveau_bo *nvbo = nouveau_gem_object(gem);
struct drm_framebuffer *fb; struct drm_framebuffer *fb;
const struct drm_format_info *info; const struct drm_format_info *info;
unsigned int width, height, i; unsigned int height, i;
uint32_t tile_mode; uint32_t tile_mode;
uint8_t kind; uint8_t kind;
int ret; int ret;
...@@ -343,9 +343,6 @@ nouveau_framebuffer_new(struct drm_device *dev, ...@@ -343,9 +343,6 @@ nouveau_framebuffer_new(struct drm_device *dev,
info = drm_get_format_info(dev, mode_cmd); info = drm_get_format_info(dev, mode_cmd);
for (i = 0; i < info->num_planes; i++) { for (i = 0; i < info->num_planes; i++) {
width = drm_format_info_plane_width(info,
mode_cmd->width,
i);
height = drm_format_info_plane_height(info, height = drm_format_info_plane_height(info,
mode_cmd->height, mode_cmd->height,
i); i);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment