git: eb62bd1d3851 - stable/13 - x86: Deduplicate clock.h

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Mon, 27 Dec 2021 15:48:15 UTC
The branch stable/13 has been updated by markj:

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

commit eb62bd1d38511f1b7414c3e81d6ac508de098660
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2021-12-06 15:39:08 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2021-12-27 15:48:00 +0000

    x86: Deduplicate clock.h
    
    The headers were mostly identical on amd64 and i386.
    
    No functional change intended.
    
    Reviewed by:    cperciva, mav, imp, kib, jhb
    Sponsored by:   The FreeBSD Foundation
    
    (cherry picked from commit f06f1d1fdb969fa7a0a6eefa030d8536f365eb6e)
---
 sys/amd64/include/clock.h | 45 ++-------------------------------------------
 sys/i386/include/clock.h  | 42 ++----------------------------------------
 sys/x86/include/clock.h   | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 50 insertions(+), 83 deletions(-)

diff --git a/sys/amd64/include/clock.h b/sys/amd64/include/clock.h
index 86a4541568ed..57233651aef3 100644
--- a/sys/amd64/include/clock.h
+++ b/sys/amd64/include/clock.h
@@ -1,46 +1,5 @@
-/*-
- * Kernel interface to machine-dependent clock driver.
- * Garrett Wollman, September 1994.
- * This file is in the public domain.
- *
- * $FreeBSD$
- */
-
-#ifndef _MACHINE_CLOCK_H_
-#define	_MACHINE_CLOCK_H_
-
-#ifdef _KERNEL
-/*
- * i386 to clock driver interface.
- * XXX large parts of the driver and its interface are misplaced.
- */
-extern int	clkintr_pending;
-extern u_int	i8254_freq;
-extern int	i8254_max_count;
-extern uint64_t	tsc_freq;
-extern int	tsc_is_invariant;
-extern int	tsc_perf_stat;
-#ifdef SMP
-extern int	smp_tsc;
-#endif
-
-void	i8254_init(void);
-void	i8254_delay(int);
-void	clock_init(void);
-
 /*
- * Driver to clock driver interface.
+ * This file is in the public domain.
  */
 
-void	startrtclock(void);
-void	init_TSC(void);
-void	resume_TSC(void);
-
-#define	HAS_TIMER_SPKR 1
-int	timer_spkr_acquire(void);
-int	timer_spkr_release(void);
-void	timer_spkr_setfreq(int freq);
-
-#endif /* _KERNEL */
-
-#endif /* !_MACHINE_CLOCK_H_ */
+#include <x86/clock.h>
diff --git a/sys/i386/include/clock.h b/sys/i386/include/clock.h
index 6f335bf05cfa..57233651aef3 100644
--- a/sys/i386/include/clock.h
+++ b/sys/i386/include/clock.h
@@ -1,43 +1,5 @@
-/*-
- * Kernel interface to machine-dependent clock driver.
- * Garrett Wollman, September 1994.
- * This file is in the public domain.
- *
- * $FreeBSD$
- */
-
-#ifndef _MACHINE_CLOCK_H_
-#define	_MACHINE_CLOCK_H_
-
-#ifdef _KERNEL
-/*
- * i386 to clock driver interface.
- * XXX large parts of the driver and its interface are misplaced.
- */
-extern int	clkintr_pending;
-extern u_int	i8254_freq;
-extern int	i8254_max_count;
-extern uint64_t	tsc_freq;
-extern int	tsc_is_invariant;
-extern int	tsc_perf_stat;
-
-void	i8254_init(void);
-void	i8254_delay(int);
-void	clock_init(void);
-
 /*
- * Driver to clock driver interface.
+ * This file is in the public domain.
  */
 
-void	startrtclock(void);
-void	init_TSC(void);
-void	resume_TSC(void);
-
-#define	HAS_TIMER_SPKR 1
-int	timer_spkr_acquire(void);
-int	timer_spkr_release(void);
-void	timer_spkr_setfreq(int freq);
-
-#endif /* _KERNEL */
-
-#endif /* !_MACHINE_CLOCK_H_ */
+#include <x86/clock.h>
diff --git a/sys/x86/include/clock.h b/sys/x86/include/clock.h
new file mode 100644
index 000000000000..86a4541568ed
--- /dev/null
+++ b/sys/x86/include/clock.h
@@ -0,0 +1,46 @@
+/*-
+ * Kernel interface to machine-dependent clock driver.
+ * Garrett Wollman, September 1994.
+ * This file is in the public domain.
+ *
+ * $FreeBSD$
+ */
+
+#ifndef _MACHINE_CLOCK_H_
+#define	_MACHINE_CLOCK_H_
+
+#ifdef _KERNEL
+/*
+ * i386 to clock driver interface.
+ * XXX large parts of the driver and its interface are misplaced.
+ */
+extern int	clkintr_pending;
+extern u_int	i8254_freq;
+extern int	i8254_max_count;
+extern uint64_t	tsc_freq;
+extern int	tsc_is_invariant;
+extern int	tsc_perf_stat;
+#ifdef SMP
+extern int	smp_tsc;
+#endif
+
+void	i8254_init(void);
+void	i8254_delay(int);
+void	clock_init(void);
+
+/*
+ * Driver to clock driver interface.
+ */
+
+void	startrtclock(void);
+void	init_TSC(void);
+void	resume_TSC(void);
+
+#define	HAS_TIMER_SPKR 1
+int	timer_spkr_acquire(void);
+int	timer_spkr_release(void);
+void	timer_spkr_setfreq(int freq);
+
+#endif /* _KERNEL */
+
+#endif /* !_MACHINE_CLOCK_H_ */