Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Apr 2021 14:15:27 GMT
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 7497dd588901 - main - Fix build of stand/usb .
Message-ID:  <202104121415.13CEFRSE082384@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by hselasky:

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

commit 7497dd58890131251441ab992016c9457295094b
Author:     Hans Petter Selasky <hselasky@FreeBSD.org>
AuthorDate: 2021-04-12 14:12:18 +0000
Commit:     Hans Petter Selasky <hselasky@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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104121415.13CEFRSE082384>