The branch main has been updated by hselasky:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=7497dd58890131251441ab992016c9457295094b

commit 7497dd58890131251441ab992016c9457295094b
Author:     Hans Petter Selasky <hsela...@freebsd.org>
AuthorDate: 2021-04-12 14:12:18 +0000
Commit:     Hans Petter Selasky <hsela...@freebsd.org>
CommitDate: 2021-04-12 14:13:33 +0000

    Fix build of stand/usb .
    
    MFC after:      1 week
    Sponsored by:   Mellanox Technologies // NVIDIA Networking
---
 stand/kshim/bsd_kernel.h | 2 ++
 sys/sys/gpio.h           | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/stand/kshim/bsd_kernel.h b/stand/kshim/bsd_kernel.h
index d99d9ef0cecb..808b1b078db5 100644
--- a/stand/kshim/bsd_kernel.h
+++ b/stand/kshim/bsd_kernel.h
@@ -242,6 +242,8 @@ typedef signed long ssize_t;
 #define        _OFF_T_DECLARED
 typedef unsigned long off_t;
 
+typedef int64_t sbintime_t;
+
 typedef unsigned char   u_char;
 typedef unsigned short  u_short;
 typedef unsigned int    u_int;
diff --git a/sys/sys/gpio.h b/sys/sys/gpio.h
index 50b9b9dbb0e5..9ea1d6636c20 100644
--- a/sys/sys/gpio.h
+++ b/sys/sys/gpio.h
@@ -53,7 +53,7 @@
 #define __GPIO_H__
 
 #include <sys/ioccom.h>
-#ifndef _KERNEL
+#if !defined(_KERNEL) && !defined(_STANDALONE)
 #include <stdbool.h>
 #endif
 
_______________________________________________
dev-commits-src-main@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main
To unsubscribe, send any mail to "dev-commits-src-main-unsubscr...@freebsd.org"

Reply via email to