diff options
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_i915.c | 2 | ||||
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_msm.c | 2 | ||||
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_nouveau.c | 2 | ||||
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_r300.c | 2 | ||||
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_r600.c | 2 | ||||
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_radeonsi.c | 2 | ||||
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_vmwgfx.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_i915.c b/src/gallium/targets/pipe-loader/pipe_i915.c index 3af8fe37475..2183dc3c147 100644 --- a/src/gallium/targets/pipe-loader/pipe_i915.c +++ b/src/gallium/targets/pipe-loader/pipe_i915.c @@ -30,7 +30,7 @@ static const struct drm_conf_ret throttle_ret = { static const struct drm_conf_ret share_fd_ret = { .type = DRM_CONF_BOOL, - .val.val_int = true, + .val.val_bool = true, }; static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) diff --git a/src/gallium/targets/pipe-loader/pipe_msm.c b/src/gallium/targets/pipe-loader/pipe_msm.c index fa098e97735..858b2488b5b 100644 --- a/src/gallium/targets/pipe-loader/pipe_msm.c +++ b/src/gallium/targets/pipe-loader/pipe_msm.c @@ -24,7 +24,7 @@ static const struct drm_conf_ret throttle_ret = { static const struct drm_conf_ret share_fd_ret = { .type = DRM_CONF_BOOL, - .val.val_int = true, + .val.val_bool = true, }; static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) diff --git a/src/gallium/targets/pipe-loader/pipe_nouveau.c b/src/gallium/targets/pipe-loader/pipe_nouveau.c index d8824930b15..d9c0c5d0377 100644 --- a/src/gallium/targets/pipe-loader/pipe_nouveau.c +++ b/src/gallium/targets/pipe-loader/pipe_nouveau.c @@ -24,7 +24,7 @@ static const struct drm_conf_ret throttle_ret = { static const struct drm_conf_ret share_fd_ret = { .type = DRM_CONF_BOOL, - .val.val_int = true, + .val.val_bool = true, }; static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) diff --git a/src/gallium/targets/pipe-loader/pipe_r300.c b/src/gallium/targets/pipe-loader/pipe_r300.c index 0c170853ad2..dd5c0bd1831 100644 --- a/src/gallium/targets/pipe-loader/pipe_r300.c +++ b/src/gallium/targets/pipe-loader/pipe_r300.c @@ -20,7 +20,7 @@ static const struct drm_conf_ret throttle_ret = { static const struct drm_conf_ret share_fd_ret = { .type = DRM_CONF_BOOL, - .val.val_int = true, + .val.val_bool = true, }; static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) diff --git a/src/gallium/targets/pipe-loader/pipe_r600.c b/src/gallium/targets/pipe-loader/pipe_r600.c index dd2652da44f..70760d045ff 100644 --- a/src/gallium/targets/pipe-loader/pipe_r600.c +++ b/src/gallium/targets/pipe-loader/pipe_r600.c @@ -20,7 +20,7 @@ static const struct drm_conf_ret throttle_ret = { static const struct drm_conf_ret share_fd_ret = { .type = DRM_CONF_BOOL, - .val.val_int = true, + .val.val_bool = true, }; static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) diff --git a/src/gallium/targets/pipe-loader/pipe_radeonsi.c b/src/gallium/targets/pipe-loader/pipe_radeonsi.c index 59ea82dc567..01b1d8aedb9 100644 --- a/src/gallium/targets/pipe-loader/pipe_radeonsi.c +++ b/src/gallium/targets/pipe-loader/pipe_radeonsi.c @@ -26,7 +26,7 @@ static const struct drm_conf_ret throttle_ret = { static const struct drm_conf_ret share_fd_ret = { .type = DRM_CONF_BOOL, - .val.val_int = true, + .val.val_bool = true, }; static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) diff --git a/src/gallium/targets/pipe-loader/pipe_vmwgfx.c b/src/gallium/targets/pipe-loader/pipe_vmwgfx.c index 4572327d550..7aa44217f9c 100644 --- a/src/gallium/targets/pipe-loader/pipe_vmwgfx.c +++ b/src/gallium/targets/pipe-loader/pipe_vmwgfx.c @@ -30,7 +30,7 @@ static const struct drm_conf_ret throttle_ret = { static const struct drm_conf_ret share_fd_ret = { .type = DRM_CONF_BOOL, - .val.val_int = true, + .val.val_bool = true, }; static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) |