From: Ingo Molnar Date: Sun, 6 Jun 2021 11:27:15 +0000 (+0200) Subject: sched/headers: Add header guard to X-Git-Tag: v6.7-rc1~192^2~57 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3ba78da711940ce07c39c4cdd1f4ad284067a42d;p=thirdparty%2Fkernel%2Flinux.git sched/headers: Add header guard to It's the only non-trivial header in include/linux/sched/ missing a header guard. Signed-off-by: Ingo Molnar --- diff --git a/include/linux/sched/deadline.h b/include/linux/sched/deadline.h index 7c83d4d5a9719..df3aca89d4f50 100644 --- a/include/linux/sched/deadline.h +++ b/include/linux/sched/deadline.h @@ -1,4 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 */ +#ifndef _LINUX_SCHED_DEADLINE_H +#define _LINUX_SCHED_DEADLINE_H /* * SCHED_DEADLINE tasks has negative priorities, reflecting @@ -34,3 +36,5 @@ extern void dl_add_task_root_domain(struct task_struct *p); extern void dl_clear_root_domain(struct root_domain *rd); #endif /* CONFIG_SMP */ + +#endif /* _LINUX_SCHED_DEADLINE_H */