summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2015-04-29 10:28:17 +1000
committerBen Skeggs <bskeggs@redhat.com>2015-07-28 17:22:38 +1000
commit615268f0e4cdaacb08aabbdd667504ddefbebca2 (patch)
tree16e3e83e3f8ae94425fe43278eaa7c36e4c36647
parent8ff83c85a0547571eeca3076a6c99448f7871e28 (diff)
downloadnouveau-615268f0e4cdaacb08aabbdd667504ddefbebca2.tar.gz
remove unnecessary include
This was merged with core/device.h in an earlier commit, but somehow never got removed. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r--drm/nouveau/include/nvkm/engine/device.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/drm/nouveau/include/nvkm/engine/device.h b/drm/nouveau/include/nvkm/engine/device.h
deleted file mode 100644
index 5d4805e67..000000000
--- a/drm/nouveau/include/nvkm/engine/device.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef __NOUVEAU_SUBDEV_DEVICE_H__
-#define __NOUVEAU_SUBDEV_DEVICE_H__
-
-#include <core/device.h>
-
-struct platform_device;
-
-enum nv_bus_type {
- NOUVEAU_BUS_PCI,
- NOUVEAU_BUS_PLATFORM,
-};
-
-#define nouveau_device_create(p,t,n,s,c,d,u) \
- nouveau_device_create_((void *)(p), (t), (n), (s), (c), (d), \
- sizeof(**u), (void **)u)
-
-int nouveau_device_create_(void *, enum nv_bus_type type, u64 name,
- const char *sname, const char *cfg, const char *dbg,
- int, void **);
-
-int nv04_identify(struct nouveau_device *);
-int nv10_identify(struct nouveau_device *);
-int nv20_identify(struct nouveau_device *);
-int nv30_identify(struct nouveau_device *);
-int nv40_identify(struct nouveau_device *);
-int nv50_identify(struct nouveau_device *);
-int nvc0_identify(struct nouveau_device *);
-int nve0_identify(struct nouveau_device *);
-int gm100_identify(struct nouveau_device *);
-#endif