forked from luck/tmp_suning_uos_patched
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: Clemens Ladisch <clemens@ladisch.de> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
cda6be1ce2
commit
7a654158bd
@ -256,7 +256,7 @@ struct drm_framebuffer {
|
|||||||
unsigned int depth;
|
unsigned int depth;
|
||||||
int bits_per_pixel;
|
int bits_per_pixel;
|
||||||
int flags;
|
int flags;
|
||||||
void *fbdev;
|
struct fb_info *fbdev;
|
||||||
u32 pseudo_palette[17];
|
u32 pseudo_palette[17];
|
||||||
struct list_head filp_head;
|
struct list_head filp_head;
|
||||||
/* if you are using the helper */
|
/* if you are using the helper */
|
||||||
|
Loading…
Reference in New Issue
Block a user