Date: Fri, 24 Jan 2025 12:11:56 GMT From: Andrew Turner <andrew@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 41dfdf04e2b1 - main - arm: Fix the location of a ';' Message-ID: <202501241211.50OCBuHf040556@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by andrew: URL: https://cgit.FreeBSD.org/src/commit/?id=41dfdf04e2b1e39634603370299b15634a17e4a7 commit 41dfdf04e2b1e39634603370299b15634a17e4a7 Author: Andrew Turner <andrew@FreeBSD.org> AuthorDate: 2025-01-24 11:43:03 +0000 Commit: Andrew Turner <andrew@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 {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501241211.50OCBuHf040556>