Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
devinit.h
Go to the documentation of this file.
1 #ifndef __NOUVEAU_DEVINIT_H__
2 #define __NOUVEAU_DEVINIT_H__
3 
4 #include <core/subdev.h>
5 #include <core/device.h>
6 
9  bool post;
11 };
12 
13 static inline struct nouveau_devinit *
14 nouveau_devinit(void *obj)
15 {
16  return (void *)nv_device(obj)->subdev[NVDEV_SUBDEV_DEVINIT];
17 }
18 
19 #define nouveau_devinit_create(p,e,o,d) \
20  nouveau_devinit_create_((p), (e), (o), sizeof(**d), (void **)d)
21 #define nouveau_devinit_destroy(p) \
22  nouveau_subdev_destroy(&(p)->base)
23 
25  struct nouveau_oclass *, int, void **);
27 int nouveau_devinit_fini(struct nouveau_devinit *, bool suspend);
28 
35 
36 void nv04_devinit_dtor(struct nouveau_object *);
37 int nv04_devinit_init(struct nouveau_object *);
38 int nv04_devinit_fini(struct nouveau_object *, bool);
39 
40 #endif