diff options
author | Vladimir Kondratyev <wulf@FreeBSD.org> | 2021-12-19 10:42:42 +0000 |
---|---|---|
committer | Vladimir Kondratyev <wulf@FreeBSD.org> | 2022-01-10 19:49:38 +0000 |
commit | 307f78f3ed90a4145eeb2c8cc79bc95b2666f57a (patch) | |
tree | 5e166811f5df5a5efbb7a51d848ed0a82e29683d /sys/compat/linuxkpi/common/include/linux/time.h | |
parent | 98b129783c478616f59b3b9c9576a303f7ed67de (diff) | |
download | src-307f78f3ed90a4145eeb2c8cc79bc95b2666f57a.tar.gz src-307f78f3ed90a4145eeb2c8cc79bc95b2666f57a.zip |
LinuxKPI: Constantly use _LINUXKPI_ prefix in include guards
MFC after: 1 week
Reviewed by: bz, emaste, hselasky, manu
Differential Revision: https://reviews.freebsd.org/D33562
Diffstat (limited to 'sys/compat/linuxkpi/common/include/linux/time.h')
-rw-r--r-- | sys/compat/linuxkpi/common/include/linux/time.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/time.h b/sys/compat/linuxkpi/common/include/linux/time.h index 1c07c69a67a6..c7a41a83f4aa 100644 --- a/sys/compat/linuxkpi/common/include/linux/time.h +++ b/sys/compat/linuxkpi/common/include/linux/time.h @@ -25,8 +25,8 @@ * * $FreeBSD$ */ -#ifndef _LINUX_TIME_H_ -#define _LINUX_TIME_H_ +#ifndef _LINUXKPI_LINUX_TIME_H_ +#define _LINUXKPI_LINUX_TIME_H_ #define NSEC_PER_USEC 1000L #define NSEC_PER_MSEC 1000000L @@ -132,4 +132,4 @@ get_seconds(void) return time_uptime; } -#endif /* _LINUX_TIME_H_ */ +#endif /* _LINUXKPI_LINUX_TIME_H_ */ |