proc: Fix proc_sys_prune_dcache to hold a sb reference
[cris-mirror.git] / drivers / gpu / drm / nouveau / nouveau_debugfs.h
blobb799f8dfb2b244dddd477dd97642a8b8450d4e66
1 #ifndef __NOUVEAU_DEBUGFS_H__
2 #define __NOUVEAU_DEBUGFS_H__
4 #include <drm/drmP.h>
6 #if defined(CONFIG_DEBUG_FS)
8 #include "nouveau_drv.h"
10 struct nouveau_debugfs {
11 struct nvif_object ctrl;
14 static inline struct nouveau_debugfs *
15 nouveau_debugfs(struct drm_device *dev)
17 return nouveau_drm(dev)->debugfs;
20 extern int nouveau_drm_debugfs_init(struct drm_minor *);
21 extern int nouveau_debugfs_init(struct nouveau_drm *);
22 extern void nouveau_debugfs_fini(struct nouveau_drm *);
23 #else
24 static inline int
25 nouveau_drm_debugfs_init(struct drm_minor *minor)
27 return 0;
30 static inline int
31 nouveau_debugfs_init(struct nouveau_drm *drm)
33 return 0;
36 static inline void
37 nouveau_debugfs_fini(struct nouveau_drm *drm)
41 #endif
43 #endif