Release 4.11 drivers/gpu/drm/nouveau/nouveau_debugfs.h
#ifndef __NOUVEAU_DEBUGFS_H__
#define __NOUVEAU_DEBUGFS_H__
#include <drm/drmP.h>
#if defined(CONFIG_DEBUG_FS)
#include "nouveau_drv.h"
struct nouveau_debugfs {
struct nvif_object ctrl;
};
static inline struct nouveau_debugfs *
nouveau_debugfs(struct drm_device *dev)
{
return nouveau_drm(dev)->debugfs;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Karol Herbst | 22 | 100.00% | 1 | 100.00% |
Total | 22 | 100.00% | 1 | 100.00% |
extern int nouveau_drm_debugfs_init(struct drm_minor *);
extern void nouveau_drm_debugfs_cleanup(struct drm_minor *);
extern int nouveau_debugfs_init(struct nouveau_drm *);
extern void nouveau_debugfs_fini(struct nouveau_drm *);
#else
static inline int
nouveau_drm_debugfs_init(struct drm_minor *minor)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Marcin Ślusarz | 14 | 93.33% | 1 | 50.00% |
Karol Herbst | 1 | 6.67% | 1 | 50.00% |
Total | 15 | 100.00% | 2 | 100.00% |
static inline void
nouveau_drm_debugfs_cleanup(struct drm_minor *minor)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Marcin Ślusarz | 10 | 90.91% | 1 | 50.00% |
Karol Herbst | 1 | 9.09% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
static inline int
nouveau_debugfs_init(struct nouveau_drm *drm)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Karol Herbst | 14 | 93.33% | 1 | 50.00% |
Arnd Bergmann | 1 | 6.67% | 1 | 50.00% |
Total | 15 | 100.00% | 2 | 100.00% |
static inline void
nouveau_debugfs_fini(struct nouveau_drm *drm)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Karol Herbst | 10 | 90.91% | 1 | 50.00% |
Arnd Bergmann | 1 | 9.09% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Karol Herbst | 79 | 55.24% | 2 | 40.00% |
Marcin Ślusarz | 61 | 42.66% | 1 | 20.00% |
Arnd Bergmann | 2 | 1.40% | 1 | 20.00% |
Ben Skeggs | 1 | 0.70% | 1 | 20.00% |
Total | 143 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.