diff options
author | 2019-12-31 00:00:09 +0000 | |
---|---|---|
committer | 2019-12-31 00:00:09 +0000 | |
commit | d8b520e5f65cb2512b16b0ecb99135b4ed989a00 (patch) | |
tree | c4ab37f1f548cc4bc16b6309621313e5734ca047 | |
parent | convert infinite msleep(9) to msleep_nsec(9) (diff) | |
download | wireguard-openbsd-d8b520e5f65cb2512b16b0ecb99135b4ed989a00.tar.xz wireguard-openbsd-d8b520e5f65cb2512b16b0ecb99135b4ed989a00.zip |
needs sys/sensor.h to standalone from whether machine/cpu.h pulls the
file or not
found by olivier@burelli.fr
-rw-r--r-- | sys/dev/pci/mfi_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/mfi_pci.c b/sys/dev/pci/mfi_pci.c index 787c2344b80..d084db811b1 100644 --- a/sys/dev/pci/mfi_pci.c +++ b/sys/dev/pci/mfi_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mfi_pci.c,v 1.29 2014/09/09 03:08:30 dlg Exp $ */ +/* $OpenBSD: mfi_pci.c,v 1.30 2019/12/31 00:00:09 deraadt Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@peereboom.us> * @@ -23,6 +23,7 @@ #include <sys/malloc.h> #include <sys/device.h> #include <sys/rwlock.h> +#include <sys/sensors.h> #include <dev/pci/pcidevs.h> #include <dev/pci/pcivar.h> |