diff options
author | Ben Skeggs <[email protected]> | 2015-11-26 09:38:35 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2015-12-22 13:23:59 +1000 |
commit | a458ffacbae8845038b9a17fa714f097d923d271 (patch) | |
tree | 0e954aa1ff3349c3392fe16f3c05ec73cd7e3e6b /src/gallium/winsys | |
parent | a8abdf2f353d95f2800df2cca36e481a2ac3e5b3 (diff) |
nouveau: remove use of deprecated nouveau_device::fd
Signed-off-by: Ben Skeggs <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Tested-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/gallium/winsys')
-rw-r--r-- | src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c b/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c index c6603e38a00..3ed644edfd8 100644 --- a/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c +++ b/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c @@ -27,7 +27,7 @@ bool nouveau_drm_screen_unref(struct nouveau_screen *screen) ret = --screen->refcount; assert(ret >= 0); if (ret == 0) - util_hash_table_remove(fd_tab, intptr_to_pointer(screen->device->fd)); + util_hash_table_remove(fd_tab, intptr_to_pointer(screen->drm->fd)); pipe_mutex_unlock(nouveau_screen_mutex); return ret == 0; } |