diff options
author | Emil Velikov <[email protected]> | 2016-10-11 19:39:24 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-10-14 11:09:00 +0100 |
commit | 9837cf13b153218d9a5f32f538277e4fc139cebe (patch) | |
tree | 688eaa6310a8174c63e183fd60b2f56f1bcf12f5 /src/gallium/targets/pipe-loader | |
parent | 0f031dcf115c1dfbd87c3d8b986a86431cfdf217 (diff) |
gallium: remove unused drm_driver_descriptor::driver_name
Likely unused since day 1, although I've only checked back until the
st/dri unification with commit 29ca7d2c948 ("st/dri: merge dri/drm and
dri/sw backends")
Based on the comment, referencing drmOpenByName it's not something we
want to bring back.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/targets/pipe-loader')
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_i915.c | 2 | ||||
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_i965.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 |
8 files changed, 8 insertions, 8 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_i915.c b/src/gallium/targets/pipe-loader/pipe_i915.c index b0da6137f3d..3af8fe37475 100644 --- a/src/gallium/targets/pipe-loader/pipe_i915.c +++ b/src/gallium/targets/pipe-loader/pipe_i915.c @@ -47,4 +47,4 @@ static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) } PUBLIC -DRM_DRIVER_DESCRIPTOR("i915", "i915", create_screen, drm_configuration) +DRM_DRIVER_DESCRIPTOR("i915", create_screen, drm_configuration) diff --git a/src/gallium/targets/pipe-loader/pipe_i965.c b/src/gallium/targets/pipe-loader/pipe_i965.c index 810dffca812..a2d8debfc9c 100644 --- a/src/gallium/targets/pipe-loader/pipe_i965.c +++ b/src/gallium/targets/pipe-loader/pipe_i965.c @@ -44,4 +44,4 @@ static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) return NULL; } PUBLIC -DRM_DRIVER_DESCRIPTOR("i965", "i915", create_screen, drm_configuration) +DRM_DRIVER_DESCRIPTOR("i965", create_screen, drm_configuration) diff --git a/src/gallium/targets/pipe-loader/pipe_msm.c b/src/gallium/targets/pipe-loader/pipe_msm.c index 8a44edd22a6..fa098e97735 100644 --- a/src/gallium/targets/pipe-loader/pipe_msm.c +++ b/src/gallium/targets/pipe-loader/pipe_msm.c @@ -41,4 +41,4 @@ static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) } PUBLIC -DRM_DRIVER_DESCRIPTOR("msm", "freedreno", create_screen, drm_configuration) +DRM_DRIVER_DESCRIPTOR("msm", create_screen, drm_configuration) diff --git a/src/gallium/targets/pipe-loader/pipe_nouveau.c b/src/gallium/targets/pipe-loader/pipe_nouveau.c index 825b36f602e..d8824930b15 100644 --- a/src/gallium/targets/pipe-loader/pipe_nouveau.c +++ b/src/gallium/targets/pipe-loader/pipe_nouveau.c @@ -41,4 +41,4 @@ static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) } PUBLIC -DRM_DRIVER_DESCRIPTOR("nouveau", "nouveau", create_screen, drm_configuration) +DRM_DRIVER_DESCRIPTOR("nouveau", create_screen, drm_configuration) diff --git a/src/gallium/targets/pipe-loader/pipe_r300.c b/src/gallium/targets/pipe-loader/pipe_r300.c index 368b8c22329..0c170853ad2 100644 --- a/src/gallium/targets/pipe-loader/pipe_r300.c +++ b/src/gallium/targets/pipe-loader/pipe_r300.c @@ -37,4 +37,4 @@ static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) } PUBLIC -DRM_DRIVER_DESCRIPTOR("r300", "radeon", create_screen, drm_configuration) +DRM_DRIVER_DESCRIPTOR("r300", create_screen, drm_configuration) diff --git a/src/gallium/targets/pipe-loader/pipe_r600.c b/src/gallium/targets/pipe-loader/pipe_r600.c index 65b11c8ba60..dd2652da44f 100644 --- a/src/gallium/targets/pipe-loader/pipe_r600.c +++ b/src/gallium/targets/pipe-loader/pipe_r600.c @@ -37,4 +37,4 @@ static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) } PUBLIC -DRM_DRIVER_DESCRIPTOR("r600", "radeon", create_screen, drm_configuration) +DRM_DRIVER_DESCRIPTOR("r600", create_screen, drm_configuration) diff --git a/src/gallium/targets/pipe-loader/pipe_radeonsi.c b/src/gallium/targets/pipe-loader/pipe_radeonsi.c index 31077af6a04..59ea82dc567 100644 --- a/src/gallium/targets/pipe-loader/pipe_radeonsi.c +++ b/src/gallium/targets/pipe-loader/pipe_radeonsi.c @@ -43,4 +43,4 @@ static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) } PUBLIC -DRM_DRIVER_DESCRIPTOR("radeonsi", "radeon", create_screen, drm_configuration) +DRM_DRIVER_DESCRIPTOR("radeonsi", create_screen, drm_configuration) diff --git a/src/gallium/targets/pipe-loader/pipe_vmwgfx.c b/src/gallium/targets/pipe-loader/pipe_vmwgfx.c index 71015dfadb7..4572327d550 100644 --- a/src/gallium/targets/pipe-loader/pipe_vmwgfx.c +++ b/src/gallium/targets/pipe-loader/pipe_vmwgfx.c @@ -47,4 +47,4 @@ static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) } PUBLIC -DRM_DRIVER_DESCRIPTOR("vmwgfx", "vmwgfx", create_screen, drm_configuration) +DRM_DRIVER_DESCRIPTOR("vmwgfx", create_screen, drm_configuration) |