Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f988d13 authored by Sascha Hauer's avatar Sascha Hauer Committed by Dave Airlie
Browse files

drm fb helper: remove unused variable crtc_id



crtc_id is set but never used, so remove it from struct
drm_fb_helper_crtc.

Signed-off-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent e9ad3181
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -417,7 +417,6 @@ int drm_fb_helper_init(struct drm_device *dev,


	i = 0;
	i = 0;
	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
		fb_helper->crtc_info[i].crtc_id = crtc->base.id;
		fb_helper->crtc_info[i].mode_set.crtc = crtc;
		fb_helper->crtc_info[i].mode_set.crtc = crtc;
		i++;
		i++;
	}
	}
+0 −1
Original line number Original line Diff line number Diff line
@@ -35,7 +35,6 @@ struct drm_fb_helper;
#include <linux/kgdb.h>
#include <linux/kgdb.h>


struct drm_fb_helper_crtc {
struct drm_fb_helper_crtc {
	uint32_t crtc_id;
	struct drm_mode_set mode_set;
	struct drm_mode_set mode_set;
	struct drm_display_mode *desired_mode;
	struct drm_display_mode *desired_mode;
};
};