diff options
| author | Gurchetan Singh <gurchetansingh@chromium.org> | 2019-06-04 16:27:56 -0700 |
|---|---|---|
| committer | chrome-bot <chrome-bot@chromium.org> | 2019-09-13 10:48:32 -0700 |
| commit | d014ed5b4c12e7c806260e2ae304accfcd6c73aa (patch) | |
| tree | d510ef2ea8abcbc6bf1ab4858cd9a15aba678d7b /drv.c | |
| parent | d97877bb4e458275e20e40af0a2f4335bb5e69de (diff) | |
| download | platform_external_minigbm-d014ed5b4c12e7c806260e2ae304accfcd6c73aa.tar.gz platform_external_minigbm-d014ed5b4c12e7c806260e2ae304accfcd6c73aa.tar.bz2 platform_external_minigbm-d014ed5b4c12e7c806260e2ae304accfcd6c73aa.zip | |
minigbm: remove vgem backend
It's not used anymore, or atleast shouldn't be.
BUG=none
TEST=CQ will test
Change-Id: Ib9232a7704bd39e59a8e2a5bc2ece62c5dd8e9c1
Reviewed-on: https://chromium-review.googlesource.com/1643676
Tested-by: Gurchetan Singh <gurchetansingh@chromium.org>
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Legacy-Commit-Queue: Commit Bot <commit-bot@chromium.org>
Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
Diffstat (limited to 'drv.c')
| -rw-r--r-- | drv.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -61,7 +61,6 @@ extern const struct backend backend_udl; #ifdef DRV_VC4 extern const struct backend backend_vc4; #endif -extern const struct backend backend_vgem; extern const struct backend backend_virtio_gpu; static const struct backend *drv_get_backend(int fd) @@ -111,7 +110,7 @@ static const struct backend *drv_get_backend(int fd) #ifdef DRV_VC4 &backend_vc4, #endif - &backend_vgem, &backend_virtio_gpu, + &backend_virtio_gpu, }; for (i = 0; i < ARRAY_SIZE(backend_list); i++) |
