Browse Source

drm/qxl: use container_of to resolve qxl_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>
Fabian Frederick 11 years ago
parent
commit
f38e34ac54
1 changed files with 2 additions and 1 deletions
  1. 2 1
      drivers/gpu/drm/qxl/qxl_fb.c

+ 2 - 1
drivers/gpu/drm/qxl/qxl_fb.c

@@ -625,7 +625,8 @@ static int qxl_fb_find_or_create_single(
 		struct drm_fb_helper *helper,
 		struct drm_fb_helper *helper,
 		struct drm_fb_helper_surface_size *sizes)
 		struct drm_fb_helper_surface_size *sizes)
 {
 {
-	struct qxl_fbdev *qfbdev = (struct qxl_fbdev *)helper;
+	struct qxl_fbdev *qfbdev =
+		container_of(helper, struct qxl_fbdev, helper);
 	int new_fb = 0;
 	int new_fb = 0;
 	int ret;
 	int ret;