diff options
| author | Sepherosa Ziehau <sephe@FreeBSD.org> | 2016-12-20 05:39:00 +0000 |
|---|---|---|
| committer | Sepherosa Ziehau <sephe@FreeBSD.org> | 2016-12-20 05:39:00 +0000 |
| commit | 8e10e18f0219fcf646a0a00115d60516ca740a33 (patch) | |
| tree | f51fe6402c1679753318a91a289499c2630d62ec /sys/dev/hyperv | |
| parent | ed8107d13121d59775da6f83a31da6c16292e0a7 (diff) | |
Notes
Diffstat (limited to 'sys/dev/hyperv')
| -rw-r--r-- | sys/dev/hyperv/utilities/hv_heartbeat.c | 2 | ||||
| -rw-r--r-- | sys/dev/hyperv/utilities/hv_shutdown.c | 2 | ||||
| -rw-r--r-- | sys/dev/hyperv/utilities/hv_timesync.c | 2 | ||||
| -rw-r--r-- | sys/dev/hyperv/utilities/hv_util.c | 11 |
4 files changed, 2 insertions, 15 deletions
diff --git a/sys/dev/hyperv/utilities/hv_heartbeat.c b/sys/dev/hyperv/utilities/hv_heartbeat.c index 04366c6cbf38..3b61f9adc032 100644 --- a/sys/dev/hyperv/utilities/hv_heartbeat.c +++ b/sys/dev/hyperv/utilities/hv_heartbeat.c @@ -38,8 +38,6 @@ __FBSDID("$FreeBSD$"); #include <dev/hyperv/utilities/vmbus_icreg.h> #include <dev/hyperv/utilities/vmbus_icvar.h> -#include "vmbus_if.h" - #define VMBUS_HEARTBEAT_FWVER_MAJOR 3 #define VMBUS_HEARTBEAT_FWVER \ VMBUS_IC_VERSION(VMBUS_HEARTBEAT_FWVER_MAJOR, 0) diff --git a/sys/dev/hyperv/utilities/hv_shutdown.c b/sys/dev/hyperv/utilities/hv_shutdown.c index 701d64cad627..dd9643276da5 100644 --- a/sys/dev/hyperv/utilities/hv_shutdown.c +++ b/sys/dev/hyperv/utilities/hv_shutdown.c @@ -39,8 +39,6 @@ __FBSDID("$FreeBSD$"); #include <dev/hyperv/utilities/vmbus_icreg.h> #include <dev/hyperv/utilities/vmbus_icvar.h> -#include "vmbus_if.h" - #define VMBUS_SHUTDOWN_FWVER_MAJOR 3 #define VMBUS_SHUTDOWN_FWVER \ VMBUS_IC_VERSION(VMBUS_SHUTDOWN_FWVER_MAJOR, 0) diff --git a/sys/dev/hyperv/utilities/hv_timesync.c b/sys/dev/hyperv/utilities/hv_timesync.c index 65bf63483f90..350b764edd0a 100644 --- a/sys/dev/hyperv/utilities/hv_timesync.c +++ b/sys/dev/hyperv/utilities/hv_timesync.c @@ -40,8 +40,6 @@ __FBSDID("$FreeBSD$"); #include <dev/hyperv/utilities/vmbus_icreg.h> #include <dev/hyperv/utilities/vmbus_icvar.h> -#include "vmbus_if.h" - #define VMBUS_TIMESYNC_FWVER_MAJOR 3 #define VMBUS_TIMESYNC_FWVER \ VMBUS_IC_VERSION(VMBUS_TIMESYNC_FWVER_MAJOR, 0) diff --git a/sys/dev/hyperv/utilities/hv_util.c b/sys/dev/hyperv/utilities/hv_util.c index fa15c5adf924..574670053918 100644 --- a/sys/dev/hyperv/utilities/hv_util.c +++ b/sys/dev/hyperv/utilities/hv_util.c @@ -22,23 +22,16 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ -/* - * A common driver for all hyper-V util services. - */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/param.h> -#include <sys/kernel.h> #include <sys/bus.h> #include <sys/malloc.h> -#include <sys/module.h> -#include <sys/reboot.h> #include <sys/systm.h> #include <sys/sysctl.h> -#include <sys/timetc.h> #include <dev/hyperv/include/hyperv.h> #include <dev/hyperv/include/vmbus.h> |
