summaryrefslogtreecommitdiffstats
path: root/src/gbm/main
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-05-09 18:41:50 +0100
committerEmil Velikov <[email protected]>2017-05-29 16:49:44 +0100
commite183c552758ac47880f5518cdff9057d99df921b (patch)
tree191a20970f649dabd715f414044dacf32516e32c /src/gbm/main
parent2204ea64644212b9eb1c502f4743af3c1f5655a4 (diff)
gbm: move gbm_drm_device::driver_name to gbm_dri_device
The former already keeps track of the DRI module opened, based on the driver_name provided. So let's keep them together. As a nice bonus this Will allows us to remove the gbm_drm_device all together with next patch. Signed-off-by: Emil Velikov <[email protected]> Tested-by: Rob Herring <[email protected]>
Diffstat (limited to 'src/gbm/main')
-rw-r--r--src/gbm/main/common_drm.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gbm/main/common_drm.h b/src/gbm/main/common_drm.h
index 69e51ef9926..1cc52ae9314 100644
--- a/src/gbm/main/common_drm.h
+++ b/src/gbm/main/common_drm.h
@@ -38,7 +38,6 @@ enum gbm_drm_driver_type {
struct gbm_drm_device {
struct gbm_device base;
enum gbm_drm_driver_type type;
- char *driver_name;
};
#endif