diff options
author | Emil Velikov <[email protected]> | 2016-09-12 17:48:18 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-10-18 17:06:29 +0100 |
commit | af7abc512c422183a761ce3d687086abe282fa74 (patch) | |
tree | 149c76b7a7f738b2338dfc235b475dbad1939585 /src/gbm/backends/dri/gbm_dri.c | |
parent | f9f7e44c94f7eee4778768adf7afffba6c0581e7 (diff) |
loader: remove loader_get_driver_for_fd() driver_type
Reminiscent from the pre-loader days, were we had multiple instances of
the loader logic in separate places and one could build a "GALLIUM_ONLY"
version.
Since that is no longer the case and the loaders (glx/egl/gbm) do not
(and should not) require to know any classic/gallium specific we can
drop the argument and the related code.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Axel Davy <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gbm/backends/dri/gbm_dri.c')
-rw-r--r-- | src/gbm/backends/dri/gbm_dri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gbm/backends/dri/gbm_dri.c b/src/gbm/backends/dri/gbm_dri.c index e7c0e8941b5..51c4117ba70 100644 --- a/src/gbm/backends/dri/gbm_dri.c +++ b/src/gbm/backends/dri/gbm_dri.c @@ -516,7 +516,7 @@ dri_screen_create(struct gbm_dri_device *dri) { char *driver_name; - driver_name = loader_get_driver_for_fd(dri->base.base.fd, 0); + driver_name = loader_get_driver_for_fd(dri->base.base.fd); if (!driver_name) return -1; |