The branch stable/13 has been updated by vexeduxr:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=d8ee81cb8a868d4b066a8a087fa7726b638484d8

commit d8ee81cb8a868d4b066a8a087fa7726b638484d8
Author:     Ahmad Khalifa <[email protected]>
AuthorDate: 2025-09-30 11:09:28 +0000
Commit:     Ahmad Khalifa <[email protected]>
CommitDate: 2025-10-01 08:52:08 +0000

    gpioc: allocate priv->events with the correct size
    
    MFC after:      1 day
    
    (cherry picked from commit fa26e445544eb88f05779258e2ab9c96384fe74d)
---
 sys/dev/gpio/gpioc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/gpio/gpioc.c b/sys/dev/gpio/gpioc.c
index 916b37bc6f3d..1a5c483b0c3e 100644
--- a/sys/dev/gpio/gpioc.c
+++ b/sys/dev/gpio/gpioc.c
@@ -699,7 +699,7 @@ gpioc_open(struct cdev *dev, int oflags, int devtype, 
struct thread *td)
         * npins isn't a horrible fifo size for that either.
         */
        priv->numevents = priv->sc->sc_npins * 2;
-       priv->events = malloc(priv->numevents * sizeof(struct 
gpio_event_detail),
+       priv->events = malloc(priv->numevents * sizeof(struct gpioc_pin_event),
            M_GPIOC, M_WAITOK | M_ZERO);
 
        return (0);
@@ -909,7 +909,7 @@ gpioc_ioctl(struct cdev *cdev, u_long cmd, caddr_t arg, int 
fflag,
                        free(priv->events, M_GPIOC);
                        priv->numevents = evcfg->gp_fifo_size;
                        priv->events = malloc(priv->numevents *
-                           sizeof(struct gpio_event_detail), M_GPIOC,
+                           sizeof(struct gpioc_pin_event), M_GPIOC,
                            M_WAITOK | M_ZERO);
                        priv->evidx_head = priv->evidx_tail = 0;
                }

Reply via email to