The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=cba889e63caaeceacc5dbb11cbc8756e85c7fa18
commit cba889e63caaeceacc5dbb11cbc8756e85c7fa18 Author: rilysh <[email protected]> AuthorDate: 2024-02-03 00:38:13 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2024-02-03 01:35:01 +0000 sys/arm64/rockchip/rk_gpio.c: remove an extra semicolon Signed-off-by: rilysh <[email protected]> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/959 --- sys/arm64/rockchip/rk_gpio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm64/rockchip/rk_gpio.c b/sys/arm64/rockchip/rk_gpio.c index 2d3b4a03fe19..6a7ae95d4e8a 100644 --- a/sys/arm64/rockchip/rk_gpio.c +++ b/sys/arm64/rockchip/rk_gpio.c @@ -204,7 +204,7 @@ rk_gpio_write_4(struct rk_gpio_softc *sc, int reg, uint32_t value) static int rk_gpio_intr(void *arg) { - struct rk_gpio_softc *sc = (struct rk_gpio_softc *)arg;; + struct rk_gpio_softc *sc = (struct rk_gpio_softc *)arg; struct trapframe *tf = curthread->td_intr_frame; uint32_t status;
