mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 17:11:33 +00:00
drm/kms: fix fb cmap allocation to use modeset->crtc not crtc
crtc may be undefined at this point. Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
447aeb907e
commit
b0a007dc27
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user