kernel/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gm200.c
.. .. @@ -27,7 +27,7 @@ 27 27 #include <nvif/class.h> 28 28 29 29 const u8 * 30 -gm200_mmu_kind(struct nvkm_mmu *mmu, int *count)30 +gm200_mmu_kind(struct nvkm_mmu *mmu, int *count, u8 *invalid)31 31 { 32 32 static const u8 33 33 kind[256] = { .. .. @@ -65,6 +65,7 @@ 65 65 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xfd, 0xfe, 0xff 66 66 }; 67 67 *count = ARRAY_SIZE(kind); 68 + *invalid = 0xff;68 69 return kind; 69 70 } 70 71