You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
drm/ast: use container_of to resolve ast_fbdev from drm_fb_helper
Use container_of instead of casting first structure member. Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
committed by
Daniel Vetter
parent
c39aa6a1e3
commit
0d634f6e5b
@@ -186,7 +186,8 @@ static int astfb_create_object(struct ast_fbdev *afbdev,
|
|||||||
static int astfb_create(struct drm_fb_helper *helper,
|
static int astfb_create(struct drm_fb_helper *helper,
|
||||||
struct drm_fb_helper_surface_size *sizes)
|
struct drm_fb_helper_surface_size *sizes)
|
||||||
{
|
{
|
||||||
struct ast_fbdev *afbdev = (struct ast_fbdev *)helper;
|
struct ast_fbdev *afbdev =
|
||||||
|
container_of(helper, struct ast_fbdev, helper);
|
||||||
struct drm_device *dev = afbdev->helper.dev;
|
struct drm_device *dev = afbdev->helper.dev;
|
||||||
struct drm_mode_fb_cmd2 mode_cmd;
|
struct drm_mode_fb_cmd2 mode_cmd;
|
||||||
struct drm_framebuffer *fb;
|
struct drm_framebuffer *fb;
|
||||||
|
|||||||
Reference in New Issue
Block a user