[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250309150524.760-1-chaozyhaha@gmail.com>
Date: Sun, 9 Mar 2025 23:05:24 +0800
From: Qiuer Zhu <chaozyhaha@...il.com>
To: peterz@...radead.org,
frederic@...nel.org,
tglx@...utronix.de
Cc: chaozyhaha@...il.com,
linux-kernel@...r.kernel.org
Subject: [PATCH] time: Add macros to prevent duplicate inclusion of headers
Add macros to prevent duplicate inclusion of tick-internal.h
and posix-timers.h.
Signed-off-by: Qiuer Zhu <chaozyhaha@...il.com>
---
kernel/time/posix-timers.h | 5 +++++
kernel/time/tick-internal.h | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/kernel/time/posix-timers.h b/kernel/time/posix-timers.h
index 61906f0688c1..5166b832143f 100644
--- a/kernel/time/posix-timers.h
+++ b/kernel/time/posix-timers.h
@@ -1,4 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _POSIX_TIMERS_H
+#define _POSIX_TIMERS_H
+
#define TIMER_RETRY 1
enum posix_timer_state {
@@ -50,3 +53,5 @@ int common_timer_set(struct k_itimer *timr, int flags,
struct itimerspec64 *old_setting);
void posix_timer_set_common(struct k_itimer *timer, struct itimerspec64 *new_setting);
int common_timer_del(struct k_itimer *timer);
+
+#endif
diff --git a/kernel/time/tick-internal.h b/kernel/time/tick-internal.h
index faac36de35b9..bcccc0975f70 100644
--- a/kernel/time/tick-internal.h
+++ b/kernel/time/tick-internal.h
@@ -1,4 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _TICK_INTERNAL_H
+#define _TICK_INTERNAL_H
+
/*
* tick internal variable and functions used by low/high res code
*/
@@ -213,3 +216,5 @@ void hrtimers_resume_local(void);
#endif
extern ssize_t sysfs_get_uname(const char *buf, char *dst, size_t cnt);
+
+#endif
--
2.32.0.windows.2
Powered by blists - more mailing lists