From d3975204e4af9b42af864ff27e8546ac767adfcd Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Sat, 22 Oct 2022 18:01:30 +0000 Subject: [PATCH] LinuxKPI: add MSEC_PER_SEC Sponsored by: The FreeBSD Foundation Reviewed by: imp, emaste MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D37087 --- sys/compat/linuxkpi/common/include/linux/time.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/compat/linuxkpi/common/include/linux/time.h b/sys/compat/linuxkpi/common/include/linux/time.h index c7a41a83f4aa..2b69ec46935c 100644 --- a/sys/compat/linuxkpi/common/include/linux/time.h +++ b/sys/compat/linuxkpi/common/include/linux/time.h @@ -28,6 +28,8 @@ #ifndef _LINUXKPI_LINUX_TIME_H_ #define _LINUXKPI_LINUX_TIME_H_ +#define MSEC_PER_SEC 1000L + #define NSEC_PER_USEC 1000L #define NSEC_PER_MSEC 1000000L #define NSEC_PER_SEC 1000000000L