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

Commit b0a007dc authored by Ben Skeggs's avatar Ben Skeggs Committed by Dave Airlie
Browse files

drm/kms: fix fb cmap allocation to use modeset->crtc not crtc



crtc may be undefined at this point.

Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 447aeb90
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -908,7 +908,7 @@ int drm_fb_helper_single_fb_probe(struct drm_device *dev,

	if (new_fb) {
		info->var.pixclock = 0;
		ret = fb_alloc_cmap(&info->cmap, crtc->gamma_size, 0);
		ret = fb_alloc_cmap(&info->cmap, modeset->crtc->gamma_size, 0);
		if (ret)
			return ret;
		if (register_framebuffer(info) < 0) {