ecore_drm2: Remove unused 'fd' field on Ecore_Drm2_Display

This is currently not used for anything, so comment it out for now. If
it's needed later, we can just uncomment
This commit is contained in:
Christopher Michael 2023-11-21 09:08:48 -05:00
parent d8e6231f96
commit 0d0e6fedbc
2 changed files with 2 additions and 2 deletions

View File

@ -550,7 +550,7 @@ _ecore_drm2_displays_create(Ecore_Drm2_Device *dev)
sym_drmModeFreeCrtc(dcrtc);
disp->fd = dev->fd;
/* disp->fd = dev->fd; */
disp->conn = c;
/* append this display to the list */

View File

@ -239,7 +239,7 @@ struct _Ecore_Drm2_Display_Mode
struct _Ecore_Drm2_Display
{
int fd;
/* int fd; */
int x, y, w, h;
int pw, ph; // physical dimensions
Eina_Stringshare *name, *make, *model, *serial;