diff options
author | Ingo Molnar <mingo@kernel.org> | 2023-09-21 11:24:17 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2023-09-21 11:25:51 +0200 |
commit | 6eddb116dd830436afbd922568292867de6c8b9e (patch) | |
tree | 48d6a5c3d5dda55854c45a5599a7b37caed1e01c | |
parent | 3ba78da711940ce07c39c4cdd1f4ad284067a42d (diff) |
sched/headers: Standardize the <linux/sched/vhost_task.h> header guard name
Use the same _LINUX_SCHED_ prefix nomenclature as the other 29 header guards
in include/linux/sched/ do.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | include/linux/sched/vhost_task.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/linux/sched/vhost_task.h b/include/linux/sched/vhost_task.h index 837a23624a66..bc60243d43b3 100644 --- a/include/linux/sched/vhost_task.h +++ b/include/linux/sched/vhost_task.h @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 */ -#ifndef _LINUX_VHOST_TASK_H -#define _LINUX_VHOST_TASK_H - +#ifndef _LINUX_SCHED_VHOST_TASK_H +#define _LINUX_SCHED_VHOST_TASK_H struct vhost_task; @@ -11,4 +10,4 @@ void vhost_task_start(struct vhost_task *vtsk); void vhost_task_stop(struct vhost_task *vtsk); void vhost_task_wake(struct vhost_task *vtsk); -#endif +#endif /* _LINUX_SCHED_VHOST_TASK_H */ |