From: Liu Ying Date: Thu, 19 Jun 2014 07:14:37 +0000 (+0800) Subject: drm/fb-helper: Redundant info->fix.type_aux setting in drm_fb_helper_fill_fix() X-Git-Tag: v3.17-rc1~82^2~88^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=30bfa4eec7e813825f7537149eb394605c41dbe8;p=karo-tx-linux.git drm/fb-helper: Redundant info->fix.type_aux setting in drm_fb_helper_fill_fix() The variable info->fix.type_aux is set to zero twice in the function drm_fb_helper_fill_fix(). This patch removes one redundant. Signed-off-by: Liu Ying Signed-off-by: Daniel Vetter --- diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c index d5d8cea1a679..7ff98063925f 100644 --- a/drivers/gpu/drm/drm_fb_helper.c +++ b/drivers/gpu/drm/drm_fb_helper.c @@ -1056,7 +1056,6 @@ void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch, info->fix.ypanstep = 1; /* doing it in hw */ info->fix.ywrapstep = 0; info->fix.accel = FB_ACCEL_NONE; - info->fix.type_aux = 0; info->fix.line_length = pitch; return;