1 #ifndef __NVKM_DEVICE_PRIV_H__ 2 #define __NVKM_DEVICE_PRIV_H__ 3 #include <core/device.h> 4 5 extern struct nvkm_oclass nvkm_control_oclass[]; 6 7 int nv04_identify(struct nvkm_device *); 8 int nv10_identify(struct nvkm_device *); 9 int nv20_identify(struct nvkm_device *); 10 int nv30_identify(struct nvkm_device *); 11 int nv40_identify(struct nvkm_device *); 12 int nv50_identify(struct nvkm_device *); 13 int gf100_identify(struct nvkm_device *); 14 int gk104_identify(struct nvkm_device *); 15 int gm100_identify(struct nvkm_device *); 16 #endif 17