diff options
author | 2017-01-24 02:28:17 +0000 | |
---|---|---|
committer | 2017-01-24 02:28:17 +0000 | |
commit | 9a1bdb585a3208ba46b0b6790337beae112c5fe6 (patch) | |
tree | 5e2449c349896ab472a58c7d0da4a961dbf7726e /sys/dev/pci/qle.c | |
parent | Introduce ticket support. To enable them it is enough to set a positive (diff) | |
download | wireguard-openbsd-9a1bdb585a3208ba46b0b6790337beae112c5fe6.tar.xz wireguard-openbsd-9a1bdb585a3208ba46b0b6790337beae112c5fe6.zip |
Use header <sys/atomic.h> rather than <machine/atomic.h> in MI code.
OK mpi@ deraadt@
Diffstat (limited to 'sys/dev/pci/qle.c')
-rw-r--r-- | sys/dev/pci/qle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/qle.c b/sys/dev/pci/qle.c index ea9032422cd..749b6618395 100644 --- a/sys/dev/pci/qle.c +++ b/sys/dev/pci/qle.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qle.c,v 1.38 2015/09/11 10:19:05 jmatthew Exp $ */ +/* $OpenBSD: qle.c,v 1.39 2017/01/24 02:28:17 visa Exp $ */ /* * Copyright (c) 2013, 2014 Jonathan Matthew <jmatthew@openbsd.org> @@ -20,13 +20,13 @@ #include <sys/param.h> #include <sys/systm.h> +#include <sys/atomic.h> #include <sys/malloc.h> #include <sys/device.h> #include <sys/sensors.h> #include <sys/rwlock.h> #include <sys/task.h> -#include <machine/atomic.h> #include <machine/bus.h> #include <dev/pci/pcireg.h> |