Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / gpu / drm / nouveau / nouveau_debugfs.h
blob77f0323b38ba8cb7b20822a3b98866509e60c46f
1 /* SPDX-License-Identifier: MIT */
2 #ifndef __NOUVEAU_DEBUGFS_H__
3 #define __NOUVEAU_DEBUGFS_H__
5 #include <drm/drm_debugfs.h>
7 #if defined(CONFIG_DEBUG_FS)
9 #include "nouveau_drv.h"
11 struct nouveau_debugfs {
12 struct nvif_object ctrl;
15 static inline struct nouveau_debugfs *
16 nouveau_debugfs(struct drm_device *dev)
18 return nouveau_drm(dev)->debugfs;
21 extern void nouveau_drm_debugfs_init(struct drm_minor *);
22 extern int nouveau_debugfs_init(struct nouveau_drm *);
23 extern void nouveau_debugfs_fini(struct nouveau_drm *);
24 #else
25 static inline void
26 nouveau_drm_debugfs_init(struct drm_minor *minor)
29 static inline int
30 nouveau_debugfs_init(struct nouveau_drm *drm)
32 return 0;
35 static inline void
36 nouveau_debugfs_fini(struct nouveau_drm *drm)
40 #endif
42 #endif