diff options
author | Eric Anholt <[email protected]> | 2017-08-25 15:34:22 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-05-16 21:19:07 +0100 |
commit | c4c488a2aeb24c0f468664c0cacd0d01111a4e46 (patch) | |
tree | ad560d93a05e5eae1227775c9e1627e67256d1bd /src/gallium/auxiliary/pipe-loader | |
parent | 8a793d42f1ccef2c87053a1d9a130b49cfb2b84f (diff) |
v3d: Rename the vc5_dri.so driver to v3d_dri.so.
This allows the driver to load against the merged kernel DRM driver. In
the process, rename most of the build system variables and gallium
plumbing functions.
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c index 3b959e53981..6d2ed6e76f8 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c @@ -116,13 +116,13 @@ static const struct drm_driver_descriptor driver_descriptors[] = { .configuration = pipe_default_configuration_query, }, { - .driver_name = "vc4", - .create_screen = pipe_vc4_create_screen, + .driver_name = "v3d", + .create_screen = pipe_v3d_create_screen, .configuration = pipe_default_configuration_query, }, { - .driver_name = "vc5", - .create_screen = pipe_vc5_create_screen, + .driver_name = "vc4", + .create_screen = pipe_vc4_create_screen, .configuration = pipe_default_configuration_query, }, { |