1 #ifndef __NVKM_ICCSENSE_H__
2 #define __NVKM_ICCSENSE_H__
3 
4 #include <core/subdev.h>
5 
6 struct nvkm_iccsense {
7 	struct nvkm_subdev subdev;
8 	bool data_valid;
9 	struct list_head rails;
10 };
11 
12 int gf100_iccsense_new(struct nvkm_device *, int index, struct nvkm_iccsense **);
13 int nvkm_iccsense_read_all(struct nvkm_iccsense *iccsense);
14 #endif
15