summaryrefslogtreecommitdiff
path: root/nvkm/subdev/bios/priv.h
diff options
context:
space:
mode:
Diffstat (limited to 'nvkm/subdev/bios/priv.h')
-rw-r--r--nvkm/subdev/bios/priv.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/nvkm/subdev/bios/priv.h b/nvkm/subdev/bios/priv.h
deleted file mode 100644
index 187d225bd..000000000
--- a/nvkm/subdev/bios/priv.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef __NVKM_BIOS_PRIV_H__
-#define __NVKM_BIOS_PRIV_H__
-
-#include <subdev/bios.h>
-
-struct nvbios_source {
- const char *name;
- void *(*init)(struct nouveau_bios *, const char *);
- void (*fini)(void *);
- u32 (*read)(void *, u32 offset, u32 length, struct nouveau_bios *);
- bool rw;
-};
-
-int nvbios_extend(struct nouveau_bios *, u32 length);
-int nvbios_shadow(struct nouveau_bios *);
-
-extern const struct nvbios_source nvbios_rom;
-extern const struct nvbios_source nvbios_ramin;
-extern const struct nvbios_source nvbios_acpi_fast;
-extern const struct nvbios_source nvbios_acpi_slow;
-extern const struct nvbios_source nvbios_pcirom;
-extern const struct nvbios_source nvbios_platform;
-extern const struct nvbios_source nvbios_of;
-
-#endif