Date: Thu, 5 Jan 2017 08:04:04 +0000 (UTC) From: Sepherosa Ziehau <sephe@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r311380 - stable/11/sys/dev/hyperv/utilities Message-ID: <201701050804.v05844E3065112@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sephe Date: Thu Jan 5 08:04:04 2017 New Revision: 311380 URL: https://svnweb.freebsd.org/changeset/base/311380 Log: MFC 310315 hyperv/ic: Inclusion cleanup Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D8847 Modified: stable/11/sys/dev/hyperv/utilities/hv_heartbeat.c stable/11/sys/dev/hyperv/utilities/hv_shutdown.c stable/11/sys/dev/hyperv/utilities/hv_timesync.c stable/11/sys/dev/hyperv/utilities/hv_util.c Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/dev/hyperv/utilities/hv_heartbeat.c ============================================================================== --- stable/11/sys/dev/hyperv/utilities/hv_heartbeat.c Thu Jan 5 08:02:37 2017 (r311379) +++ stable/11/sys/dev/hyperv/utilities/hv_heartbeat.c Thu Jan 5 08:04:04 2017 (r311380) @@ -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) Modified: stable/11/sys/dev/hyperv/utilities/hv_shutdown.c ============================================================================== --- stable/11/sys/dev/hyperv/utilities/hv_shutdown.c Thu Jan 5 08:02:37 2017 (r311379) +++ stable/11/sys/dev/hyperv/utilities/hv_shutdown.c Thu Jan 5 08:04:04 2017 (r311380) @@ -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) Modified: stable/11/sys/dev/hyperv/utilities/hv_timesync.c ============================================================================== --- stable/11/sys/dev/hyperv/utilities/hv_timesync.c Thu Jan 5 08:02:37 2017 (r311379) +++ stable/11/sys/dev/hyperv/utilities/hv_timesync.c Thu Jan 5 08:04:04 2017 (r311380) @@ -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) Modified: stable/11/sys/dev/hyperv/utilities/hv_util.c ============================================================================== --- stable/11/sys/dev/hyperv/utilities/hv_util.c Thu Jan 5 08:02:37 2017 (r311379) +++ stable/11/sys/dev/hyperv/utilities/hv_util.c Thu Jan 5 08:04:04 2017 (r311380) @@ -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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701050804.v05844E3065112>