/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __NVKM_FUSE_H__ #define __NVKM_FUSE_H__ #include <core/subdev.h> struct nvkm_fuse { const struct nvkm_fuse_func *func; struct nvkm_subdev subdev; spinlock_t lock; }; u32 nvkm_fuse_read(struct nvkm_fuse *, u32 addr); int nv50_fuse_new(struct nvkm_device *, int, struct nvkm_fuse **); int gf100_fuse_new(struct nvkm_device *, int, struct nvkm_fuse **); int gm107_fuse_new(struct nvkm_device *, int, struct nvkm_fuse **); #endifOverall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 52 | 60.47% | 3 | 60.00% |
Martin Peres | 33 | 38.37% | 1 | 20.00% |
Greg Kroah-Hartman | 1 | 1.16% | 1 | 20.00% |
Total | 86 | 100.00% | 5 | 100.00% |