git: 302738e4ff49 - stable/13 - x86: Fix up the MFC of 08161fd3b207105847bdd1dd8729ea4cbda6e537

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Thu, 06 Jan 2022 14:08:43 UTC
The branch stable/13 has been updated by markj:

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

commit 302738e4ff4913e8941441d57498cce995fd1181
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-01-06 14:07:45 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-01-06 14:07:45 +0000

    x86: Fix up the MFC of 08161fd3b207105847bdd1dd8729ea4cbda6e537
    
    This is a direct commit to stable/13.
---
 sys/x86/x86/tsc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/x86/x86/tsc.c b/sys/x86/x86/tsc.c
index 6f0ef697cb2f..3a1377ff4277 100644
--- a/sys/x86/x86/tsc.c
+++ b/sys/x86/x86/tsc.c
@@ -744,6 +744,7 @@ tsc_calibrate(void)
 	freq_khz = tc->tc_frequency * (tsc_end - tsc_start) / (t_end - t_start);
 
 	tsc_update_freq(freq_khz);
+calibrated:
 	tc_init(&tsc_timecounter);
 	set_cputicker(rdtsc, tsc_freq, !tsc_is_invariant);
 }