Release 4.11 drivers/gpu/drm/nouveau/include/nvkm/core/enum.h
#ifndef __NVKM_ENUM_H__
#define __NVKM_ENUM_H__
#include <core/os.h>
struct nvkm_enum {
u32 value;
const char *name;
const void *data;
u32 data2;
};
const struct nvkm_enum *nvkm_enum_find(const struct nvkm_enum *, u32 value);
struct nvkm_bitfield {
u32 mask;
const char *name;
};
void nvkm_snprintbf(char *, int, const struct nvkm_bitfield *, u32 value);
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 73 | 94.81% | 3 | 60.00% |
Marcin Ślusarz | 4 | 5.19% | 2 | 40.00% |
Total | 77 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.