summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2016-10-11 19:39:25 +0100
committerEmil Velikov <emil.l.velikov@gmail.com>2016-10-14 11:09:00 +0100
commitc079a206ad9b48919d2649e6ca4747d3a067987e (patch)
tree051b4954ade29d832372693778f8b47a689ac8f1 /src/gallium/auxiliary
parent9837cf13b153218d9a5f32f538277e4fc139cebe (diff)
downloadexternal_mesa3d-c079a206ad9b48919d2649e6ca4747d3a067987e.zip
external_mesa3d-c079a206ad9b48919d2649e6ca4747d3a067987e.tar.gz
external_mesa3d-c079a206ad9b48919d2649e6ca4747d3a067987e.tar.bz2
gallium: rename drm_driver_descriptor::{, driver_}name
Historically we use "device name" for the name of the kernel module and "driver name" for the dri/other driver. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
index cf70524..1ad2f13 100644
--- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
+++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
@@ -89,7 +89,7 @@ configuration_query(enum drm_conf conf)
static const struct drm_driver_descriptor driver_descriptors[] = {
{
- .name = "i915",
+ .driver_name = "i915",
.create_screen = pipe_i915_create_screen,
.configuration = configuration_query,
},
@@ -99,58 +99,58 @@ static const struct drm_driver_descriptor driver_descriptors[] = {
* it.
*/
{
- .name = "i965",
+ .driver_name = "i965",
.create_screen = pipe_vc4_create_screen,
.configuration = configuration_query,
},
#endif
{
- .name = "i965",
+ .driver_name = "i965",
.create_screen = pipe_ilo_create_screen,
.configuration = configuration_query,
},
{
- .name = "nouveau",
+ .driver_name = "nouveau",
.create_screen = pipe_nouveau_create_screen,
.configuration = configuration_query,
},
{
- .name = "r300",
+ .driver_name = "r300",
.create_screen = pipe_r300_create_screen,
.configuration = configuration_query,
},
{
- .name = "r600",
+ .driver_name = "r600",
.create_screen = pipe_r600_create_screen,
.configuration = configuration_query,
},
{
- .name = "radeonsi",
+ .driver_name = "radeonsi",
.create_screen = pipe_radeonsi_create_screen,
.configuration = configuration_query,
},
{
- .name = "vmwgfx",
+ .driver_name = "vmwgfx",
.create_screen = pipe_vmwgfx_create_screen,
.configuration = configuration_query,
},
{
- .name = "kgsl",
+ .driver_name = "kgsl",
.create_screen = pipe_freedreno_create_screen,
.configuration = configuration_query,
},
{
- .name = "msm",
+ .driver_name = "msm",
.create_screen = pipe_freedreno_create_screen,
.configuration = configuration_query,
},
{
- .name = "virtio_gpu",
+ .driver_name = "virtio_gpu",
.create_screen = pipe_virgl_create_screen,
.configuration = configuration_query,
},
{
- .name = "vc4",
+ .driver_name = "vc4",
.create_screen = pipe_vc4_create_screen,
.configuration = configuration_query,
},
@@ -182,7 +182,7 @@ pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd)
#ifdef GALLIUM_STATIC_TARGETS
for (int i = 0; i < ARRAY_SIZE(driver_descriptors); i++) {
- if (strcmp(driver_descriptors[i].name, ddev->base.driver_name) == 0) {
+ if (strcmp(driver_descriptors[i].driver_name, ddev->base.driver_name) == 0) {
ddev->dd = &driver_descriptors[i];
break;
}
@@ -197,8 +197,8 @@ pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd)
ddev->dd = (const struct drm_driver_descriptor *)
util_dl_get_proc_address(ddev->lib, "driver_descriptor");
- /* sanity check on the name */
- if (!ddev->dd || strcmp(ddev->dd->name, ddev->base.driver_name) != 0)
+ /* sanity check on the driver name */
+ if (!ddev->dd || strcmp(ddev->dd->driver_name, ddev->base.driver_name) != 0)
goto fail;
#endif