The branch main has been updated by andrew:

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

commit 41dfdf04e2b1e39634603370299b15634a17e4a7
Author:     Andrew Turner <and...@freebsd.org>
AuthorDate: 2025-01-24 11:43:03 +0000
Commit:     Andrew Turner <and...@freebsd.org>
CommitDate: 2025-01-24 12:09:29 +0000

    arm: Fix the location of a ';'
    
    It must have fallen off the line, return it to its correct location.
    
    Sponsored by:   Arm Ltd
---
 sys/arm/arm/generic_timer.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/arm/arm/generic_timer.c b/sys/arm/arm/generic_timer.c
index 9b5f0f52368b..775290960ebd 100644
--- a/sys/arm/arm/generic_timer.c
+++ b/sys/arm/arm/generic_timer.c
@@ -191,8 +191,8 @@ get_freq(void)
 static uint64_t
 get_cntxct_a64_unstable(bool physical)
 {
-       uint64_t val
-;
+       uint64_t val;
+
        isb();
        if (physical) {
                do {

Reply via email to