drm/nouveau/disp: nothing to see here
authorBen Skeggs <bskeggs@redhat.com>
Wed, 14 May 2014 00:26:02 +0000 (10:26 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Wed, 11 Jun 2014 06:10:35 +0000 (16:10 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/core/engine/disp/base.c
drivers/gpu/drm/nouveau/core/engine/disp/priv.h
drivers/gpu/drm/nouveau/core/include/engine/disp.h

index ade59eb92fd9e584c2635fc80986497775bd78f5..7c34cf33be85cf92bb982c1b84e0768589c87e0b 100644 (file)
  * Authors: Ben Skeggs
  */
 
-#include <engine/disp.h>
+#include "priv.h"
+
+int
+_nouveau_disp_fini(struct nouveau_object *object, bool suspend)
+{
+       struct nouveau_disp *disp = (void *)object;
+       return nouveau_engine_fini(&disp->base, suspend);
+}
+
+int
+_nouveau_disp_init(struct nouveau_object *object)
+{
+       return 0;
+}
 
 void
 _nouveau_disp_dtor(struct nouveau_object *object)
@@ -48,5 +61,9 @@ nouveau_disp_create_(struct nouveau_object *parent,
        if (ret)
                return ret;
 
-       return nouveau_event_create(1, heads, &disp->vblank);
+       ret = nouveau_event_create(1, heads, &disp->vblank);
+       if (ret)
+               return ret;
+
+       return 0;
 }
index cc3c7a4ca747886222964c98d51bc510e88e5d26..66901d28a96675836eb7fc1e72928f5171f1588a 100644 (file)
@@ -7,4 +7,27 @@ struct nouveau_disp_impl {
        struct nouveau_oclass base;
 };
 
+#define nouveau_disp_create(p,e,c,h,i,x,d)                                     \
+       nouveau_disp_create_((p), (e), (c), (h), (i), (x),                     \
+                            sizeof(**d), (void **)d)
+#define nouveau_disp_destroy(d) ({                                             \
+       struct nouveau_disp *disp = (d);                                       \
+       _nouveau_disp_dtor(nv_object(disp));                                   \
+})
+#define nouveau_disp_init(d) ({                                                \
+       struct nouveau_disp *disp = (d);                                       \
+       _nouveau_disp_init(nv_object(disp));                                   \
+})
+#define nouveau_disp_fini(d,s) ({                                              \
+       struct nouveau_disp *disp = (d);                                       \
+       _nouveau_disp_fini(nv_object(disp), (s));                              \
+})
+
+int  nouveau_disp_create_(struct nouveau_object *, struct nouveau_object *,
+                         struct nouveau_oclass *, int heads,
+                         const char *, const char *, int, void **);
+void _nouveau_disp_dtor(struct nouveau_object *);
+int  _nouveau_disp_init(struct nouveau_object *);
+int  _nouveau_disp_fini(struct nouveau_object *, bool);
+
 #endif
index fd0c68804de33f7da8e890b41b7007f0e64aec12..1089faec373fef00c8a485469400ffdabbf1ade0 100644 (file)
@@ -17,25 +17,6 @@ nouveau_disp(void *obj)
        return (void *)nv_device(obj)->subdev[NVDEV_ENGINE_DISP];
 }
 
-#define nouveau_disp_create(p,e,c,h,i,x,d)                                     \
-       nouveau_disp_create_((p), (e), (c), (h), (i), (x),                     \
-                            sizeof(**d), (void **)d)
-#define nouveau_disp_destroy(d) ({                                             \
-       struct nouveau_disp *disp = (d);                                       \
-       _nouveau_disp_dtor(nv_object(disp));                                   \
-})
-#define nouveau_disp_init(d)                                                   \
-       nouveau_engine_init(&(d)->base)
-#define nouveau_disp_fini(d,s)                                                 \
-       nouveau_engine_fini(&(d)->base, (s))
-
-int  nouveau_disp_create_(struct nouveau_object *, struct nouveau_object *,
-                         struct nouveau_oclass *, int heads,
-                         const char *, const char *, int, void **);
-void _nouveau_disp_dtor(struct nouveau_object *);
-#define _nouveau_disp_init _nouveau_engine_init
-#define _nouveau_disp_fini _nouveau_engine_fini
-
 extern struct nouveau_oclass *nv04_disp_oclass;
 extern struct nouveau_oclass *nv50_disp_oclass;
 extern struct nouveau_oclass *nv84_disp_oclass;