drm/exynos: rename base object of struct exynos_drm_crtc to 'base'
authorGustavo Padovan <gustavo.padovan@collabora.co.uk>
Mon, 3 Nov 2014 20:20:29 +0000 (18:20 -0200)
committerInki Dae <daeinki@gmail.com>
Sun, 25 Jan 2015 12:28:06 +0000 (21:28 +0900)
'base' is more widely used name in the drm subsystem for the base object.

Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
drivers/gpu/drm/exynos/exynos_drm_crtc.c
drivers/gpu/drm/exynos/exynos_drm_drv.h

index 5b3d18225fd68e0c59bf3ff198081590d011f9b1..1cdf7050ee89aa83495713f50f2b5b646d6edc6b 100644 (file)
@@ -324,8 +324,8 @@ int exynos_drm_crtc_create(struct exynos_drm_manager *manager)
                goto err_plane;
        }
 
-       manager->crtc = &exynos_crtc->drm_crtc;
-       crtc = &exynos_crtc->drm_crtc;
+       manager->crtc = &exynos_crtc->base;
+       crtc = &exynos_crtc->base;
 
        private->crtc[manager->pipe] = crtc;
 
index 187dde53625c44117b0d5d9b2b70abe1013084ee..0a565f83be4d81dd323089b4bc4acadb79d7a779 100644 (file)
@@ -23,8 +23,7 @@
 #define MAX_FB_BUFFER  4
 #define DEFAULT_ZPOS   -1
 
-#define to_exynos_crtc(x)      container_of(x, struct exynos_drm_crtc,\
-                               drm_crtc)
+#define to_exynos_crtc(x)      container_of(x, struct exynos_drm_crtc, base)
 #define to_exynos_plane(x)     container_of(x, struct exynos_drm_plane, base)
 
 /* This enumerates device type. */
@@ -229,7 +228,7 @@ enum exynos_crtc_mode {
 /*
  * Exynos specific crtc structure.
  *
- * @drm_crtc: crtc object.
+ * @base: crtc object.
  * @manager: the manager associated with this crtc
  * @pipe: a crtc index created at load() with a new crtc object creation
  *     and the crtc object would be set to private->crtc array
@@ -242,7 +241,7 @@ enum exynos_crtc_mode {
  * @mode: store the crtc mode value
  */
 struct exynos_drm_crtc {
-       struct drm_crtc                 drm_crtc;
+       struct drm_crtc                 base;
        struct exynos_drm_manager       *manager;
        unsigned int                    pipe;
        unsigned int                    dpms;