The branch main has been updated by zlei:

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

commit d4eb2d3f30ee492fb5b17c9f2b4a15d1c62fb9e7
Author:     Zhenlei Huang <z...@freebsd.org>
AuthorDate: 2024-12-12 06:45:11 +0000
Commit:     Zhenlei Huang <z...@freebsd.org>
CommitDate: 2024-12-12 06:45:11 +0000

    aw_gpio: Add a missing comma
    
    This unbreaks arm build after commit 719245455853.
    
    Fixes:  719245455853 aw_gpio: support Allwinner D1 GPIO
---
 sys/arm/allwinner/aw_gpio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/arm/allwinner/aw_gpio.c b/sys/arm/allwinner/aw_gpio.c
index b469a7fb453d..18b47bab12d9 100644
--- a/sys/arm/allwinner/aw_gpio.c
+++ b/sys/arm/allwinner/aw_gpio.c
@@ -206,7 +206,7 @@ extern struct allwinner_padconf a83t_padconf;
 extern struct allwinner_padconf a83t_r_padconf;
 struct aw_gpio_conf a83t_gpio_conf = {
        .padconf = &a83t_padconf,
-       .banks = "bcdefgh"
+       .banks = "bcdefgh",
        .bank_size = 0x24,
        .drv_pin_shift = 1,
        .pul_offset = 0x1C,

Reply via email to