1 #ifndef __NVKM_DEVICE_TEGRA_H__
2 #define __NVKM_DEVICE_TEGRA_H__
3 #include <core/device.h>
4 
5 struct nvkm_device_tegra {
6 	struct nvkm_device device;
7 	struct platform_device *pdev;
8 };
9 
10 int nvkm_device_tegra_new(struct platform_device *,
11 			  const char *cfg, const char *dbg,
12 			  bool detect, bool mmio, u64 subdev_mask,
13 			  struct nvkm_device **);
14 #endif
15