include sys/device.h, on some architectures this gets pulled in, but others
authorderaadt <deraadt@openbsd.org>
Mon, 14 Nov 2022 00:16:44 +0000 (00:16 +0000)
committerderaadt <deraadt@openbsd.org>
Mon, 14 Nov 2022 00:16:44 +0000 (00:16 +0000)
(like sparc64) require it explicitly

sys/dev/hid/hidcc.c
sys/dev/usb/ucc.c

index ee5e320..10f4c4e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: hidcc.c,v 1.4 2022/11/11 17:23:09 matthieu Exp $      */
+/*     $OpenBSD: hidcc.c,v 1.5 2022/11/14 00:16:44 deraadt Exp $       */
 
 /*
  * Copyright (c) 2022 Anton Lindqvist <anton@openbsd.org>
@@ -19,6 +19,7 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/malloc.h>
+#include <sys/device.h>
 
 #include <dev/hid/hidccvar.h>
 #include <dev/hid/hid.h>
index acc14ce..493acc9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ucc.c,v 1.36 2022/11/11 06:48:38 anton Exp $  */
+/*     $OpenBSD: ucc.c,v 1.37 2022/11/14 00:16:46 deraadt Exp $        */
 
 /*
  * Copyright (c) 2021 Anton Lindqvist <anton@openbsd.org>
@@ -18,6 +18,7 @@
 
 #include <sys/param.h>
 #include <sys/systm.h>
+#include <sys/device.h>
 
 #include <dev/usb/usb.h>
 #include <dev/usb/usbhid.h>