aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/pipe-loader/pipe_nouveau.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/targets/pipe-loader/pipe_nouveau.c')
-rw-r--r--src/gallium/targets/pipe-loader/pipe_nouveau.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_nouveau.c b/src/gallium/targets/pipe-loader/pipe_nouveau.c
index ead5a182738..9adba1c85c0 100644
--- a/src/gallium/targets/pipe-loader/pipe_nouveau.c
+++ b/src/gallium/targets/pipe-loader/pipe_nouveau.c
@@ -17,19 +17,8 @@ create_screen(int fd, const struct pipe_screen_config *config)
return screen;
}
-static const struct drm_conf_ret share_fd_ret = {
- .type = DRM_CONF_BOOL,
- .val.val_bool = true,
-};
-
static const struct drm_conf_ret *drm_configuration(enum drm_conf conf)
{
- switch (conf) {
- case DRM_CONF_SHARE_FD:
- return &share_fd_ret;
- default:
- break;
- }
return NULL;
}