aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/omapdrm/omap_plane.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/omapdrm/omap_plane.c')
-rw-r--r--drivers/gpu/drm/omapdrm/omap_plane.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_plane.c b/drivers/gpu/drm/omapdrm/omap_plane.c
index 78a92422ede1..7abb49b7d606 100644
--- a/drivers/gpu/drm/omapdrm/omap_plane.c
+++ b/drivers/gpu/drm/omapdrm/omap_plane.c
@@ -24,12 +24,6 @@
24#include "omap_dmm_tiler.h" 24#include "omap_dmm_tiler.h"
25#include "omap_drv.h" 25#include "omap_drv.h"
26 26
27/* some hackery because omapdss has an 'enum omap_plane' (which would be
28 * better named omap_plane_id).. and compiler seems unhappy about having
29 * both a 'struct omap_plane' and 'enum omap_plane'
30 */
31#define omap_plane _omap_plane
32
33/* 27/*
34 * plane funcs 28 * plane funcs
35 */ 29 */
@@ -38,7 +32,7 @@
38 32
39struct omap_plane { 33struct omap_plane {
40 struct drm_plane base; 34 struct drm_plane base;
41 int id; /* TODO rename omap_plane -> omap_plane_id in omapdss so I can use the enum */ 35 enum omap_plane_id id;
42 const char *name; 36 const char *name;
43 37
44 uint32_t nformats; 38 uint32_t nformats;