These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / drivers / gpu / drm / nouveau / nouveau_sysfs.c
index 1ec8f38..5dac354 100644 (file)
@@ -165,7 +165,7 @@ nouveau_sysfs_fini(struct drm_device *dev)
        struct nvif_device *device = &drm->device;
 
        if (sysfs && sysfs->ctrl.priv) {
-               device_remove_file(nv_device_base(nvxx_device(device)), &dev_attr_pstate);
+               device_remove_file(nvxx_device(device)->dev, &dev_attr_pstate);
                nvif_object_fini(&sysfs->ctrl);
        }
 
@@ -188,11 +188,10 @@ nouveau_sysfs_init(struct drm_device *dev)
        if (!sysfs)
                return -ENOMEM;
 
-       ret = nvif_object_init(nvif_object(device), NULL, NVDRM_CONTROL,
-                              NVIF_IOCTL_NEW_V0_CONTROL, NULL, 0,
-                             &sysfs->ctrl);
+       ret = nvif_object_init(&device->object, 0, NVIF_IOCTL_NEW_V0_CONTROL,
+                              NULL, 0, &sysfs->ctrl);
        if (ret == 0)
-               device_create_file(nv_device_base(nvxx_device(device)), &dev_attr_pstate);
+               device_create_file(nvxx_device(device)->dev, &dev_attr_pstate);
 
        return 0;
 }