summaryrefslogtreecommitdiff
path: root/bin/nv_rifunc.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin/nv_rifunc.h')
-rw-r--r--bin/nv_rifunc.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/bin/nv_rifunc.h b/bin/nv_rifunc.h
index 82fa77ba7..8041ea1b4 100644
--- a/bin/nv_rifunc.h
+++ b/bin/nv_rifunc.h
@@ -1,21 +1,19 @@
#include <stdlib.h>
-#include <core/os.h>
-#include <core/object.h>
-#include <core/device.h>
+#include <nvif/device.h>
static void __iomem *map = NULL;
static u64 map_page = ~0ULL;
static CAST
-nv_rfb(struct nouveau_object *device, u64 offset)
+nv_rfb(struct nvif_device *device, u64 offset)
{
- struct pci_dev *pdev = nv_device(device)->pdev;
+ struct pci_dev *pdev = nvkm_device(device)->pdev;
u64 page = (offset & ~(PAGE_SIZE - 1));
u64 addr = (offset & (PAGE_SIZE - 1));
- if (nv_device(device)->card_type < NV_40 ||
- nv_device(device)->card_type > NV_E0) {
+ if (device->info.family < NV_DEVICE_INFO_V0_CURIE ||
+ device->info.family > NV_DEVICE_INFO_V0_MAXWELL) {
printk("unsupported chipset\n");
exit(1);
}