aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Petter Selasky <hselasky@FreeBSD.org>2021-04-12 14:12:18 +0000
committerHans Petter Selasky <hselasky@FreeBSD.org>2021-04-12 14:13:33 +0000
commit7497dd58890131251441ab992016c9457295094b (patch)
tree02406b1b2a5c15cc902e5a1b2b49ac5dd7c086bc
parentdfff37765ce4ea4fd7db4d293b459dc84008f411 (diff)
downloadsrc-7497dd58890131251441ab992016c9457295094b.tar.gz
src-7497dd58890131251441ab992016c9457295094b.zip
Fix build of stand/usb .
MFC after: 1 week Sponsored by: Mellanox Technologies // NVIDIA Networking
-rw-r--r--stand/kshim/bsd_kernel.h2
-rw-r--r--sys/sys/gpio.h2
2 files changed, 3 insertions, 1 deletions
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