This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch devs/devilhorns/apos
in repository efl.
View the commit online.
commit 0d0e6fedbcf3fcf195ee6fe71ba9430f46c4b357
Author: Christopher Michael <devilho...@comcast.net>
AuthorDate: Tue Nov 21 09:08:48 2023 -0500
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
---
src/lib/ecore_drm2/ecore_drm2_displays.c | 2 +-
src/lib/ecore_drm2/ecore_drm2_private.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/lib/ecore_drm2/ecore_drm2_displays.c b/src/lib/ecore_drm2/ecore_drm2_displays.c
index 4e5161e8a9..337a30a258 100644
--- a/src/lib/ecore_drm2/ecore_drm2_displays.c
+++ b/src/lib/ecore_drm2/ecore_drm2_displays.c
@@ -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 */
diff --git a/src/lib/ecore_drm2/ecore_drm2_private.h b/src/lib/ecore_drm2/ecore_drm2_private.h
index 62392d9ece..017fe56599 100644
--- a/src/lib/ecore_drm2/ecore_drm2_private.h
+++ b/src/lib/ecore_drm2/ecore_drm2_private.h
@@ -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;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.