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 6378b5d6f1fa2a2b0b3944bf5ed7fda949f61374
Author: Christopher Michael <[email protected]>
AuthorDate: Fri Jan 23 12:24:46 2026 -0600

    ecore_drm2: Use crtc id when adding atomic properties during a crtc
    mode set
---
 src/lib/ecore_drm2/ecore_drm2_crtcs.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/ecore_drm2/ecore_drm2_crtcs.c b/src/lib/ecore_drm2/ecore_drm2_crtcs.c
index 98445a81ab..9e95510a57 100644
--- a/src/lib/ecore_drm2/ecore_drm2_crtcs.c
+++ b/src/lib/ecore_drm2/ecore_drm2_crtcs.c
@@ -276,7 +276,7 @@ _ecore_drm2_crtcs_mode_set(Ecore_Drm2_Crtc *crtc)
 
    sym_drmModeAtomicSetCursor(req, 0);
 
-   ret = sym_drmModeAtomicAddProperty(req, cstate->obj_id, cstate->mode.id,
+   ret = sym_drmModeAtomicAddProperty(req, crtc->id, cstate->mode.id,
 				      pstate->mode.value);
    if (ret < 0)
      {
@@ -285,7 +285,7 @@ _ecore_drm2_crtcs_mode_set(Ecore_Drm2_Crtc *crtc)
 	goto err;
      }
 
-   ret = sym_drmModeAtomicAddProperty(req, cstate->obj_id, cstate->active.id,
+   ret = sym_drmModeAtomicAddProperty(req, crtc->id, cstate->active.id,
 				      pstate->active.value);
    if (ret < 0)
      {
@@ -362,7 +362,7 @@ _ecore_drm2_crtcs_changes_apply(Ecore_Drm2_Crtc *crtc)
    /* copy pending state to current on success */
    memcpy(cstate, pstate, sizeof(Ecore_Drm2_Crtc_State));
 
-   /* reset pendig state */
+   /* reset pending state */
    memset(pstate, 0, sizeof(Ecore_Drm2_Crtc_State));
 
    return EINA_TRUE;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to