mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 04:34:08 +08:00
vfio-mdev/mdpy-fb: Do not set struct fb_info.apertures
Generic fbdev drivers use the apertures field in struct fb_info to control ownership of the framebuffer memory and graphics device. Do not set the values in mdpy-fb. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20221219160516.23436-10-tzimmermann@suse.de
This commit is contained in:
parent
81d2393485
commit
e12fa35444
@ -161,14 +161,6 @@ static int mdpy_fb_probe(struct pci_dev *pdev,
|
||||
goto err_release_fb;
|
||||
}
|
||||
|
||||
info->apertures = alloc_apertures(1);
|
||||
if (!info->apertures) {
|
||||
ret = -ENOMEM;
|
||||
goto err_unmap;
|
||||
}
|
||||
info->apertures->ranges[0].base = info->fix.smem_start;
|
||||
info->apertures->ranges[0].size = info->fix.smem_len;
|
||||
|
||||
info->fbops = &mdpy_fb_ops;
|
||||
info->flags = FBINFO_DEFAULT;
|
||||
info->pseudo_palette = par->palette;
|
||||
|
Loading…
Reference in New Issue
Block a user