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

Commit 7a654158 authored by Clemens Ladisch's avatar Clemens Ladisch Committed by Dave Airlie
Browse files

drm: set the type of the drm_framebuffer::fbdev field



The fbdev field of the drm_framebuffer structure is always used to store
a pointer to a fb_info, so there is no reason for it to be void*.

Signed-off-by: default avatarClemens Ladisch <clemens@ladisch.de>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent cda6be1c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -256,7 +256,7 @@ struct drm_framebuffer {
	unsigned int depth;
	int bits_per_pixel;
	int flags;
	void *fbdev;
	struct fb_info *fbdev;
	u32 pseudo_palette[17];
	struct list_head filp_head;
	/* if you are using the helper */