aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorUlrich Spörlein <uqs@FreeBSD.org>2013-09-28 07:04:03 +0000
committerUlrich Spörlein <uqs@FreeBSD.org>2013-09-28 07:04:03 +0000
commit2d0d168606f477d58d1a9aa72f94915da2f1733a (patch)
treed7dcfbda2b8be9213b05f9b373896a8f491420a1 /sys/modules
parent791ab37d80b62d308fb9f22a09fd87493f1c09a8 (diff)
Notes
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/hyperv/netvsc/Makefile12
-rw-r--r--sys/modules/hyperv/stordisengage/Makefile6
-rw-r--r--sys/modules/hyperv/storvsc/Makefile4
-rw-r--r--sys/modules/hyperv/utilities/Makefile4
-rw-r--r--sys/modules/hyperv/vmbus/Makefile6
5 files changed, 16 insertions, 16 deletions
diff --git a/sys/modules/hyperv/netvsc/Makefile b/sys/modules/hyperv/netvsc/Makefile
index b3685102eda9..472be161753f 100644
--- a/sys/modules/hyperv/netvsc/Makefile
+++ b/sys/modules/hyperv/netvsc/Makefile
@@ -2,12 +2,12 @@
.PATH: ${.CURDIR}/../../../dev/hyperv/netvsc
-KMOD = hv_netvsc
+KMOD= hv_netvsc
+SRCS= hv_net_vsc.c \
+ hv_netvsc_drv_freebsd.c \
+ hv_rndis_filter.c
+SRCS+= bus_if.h device_if.h
-SRCS = hv_net_vsc.c \
- hv_netvsc_drv_freebsd.c \
- hv_rndis_filter.c
-
-CFLAGS += -I${.CURDIR}/../../../dev/hyperv/netvsc
+CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/netvsc
.include <bsd.kmod.mk>
diff --git a/sys/modules/hyperv/stordisengage/Makefile b/sys/modules/hyperv/stordisengage/Makefile
index d65c63c34139..497deb98e426 100644
--- a/sys/modules/hyperv/stordisengage/Makefile
+++ b/sys/modules/hyperv/stordisengage/Makefile
@@ -2,8 +2,8 @@
.PATH: ${.CURDIR}/../../../dev/hyperv/stordisengage
-KMOD= hv_ata_pci_disengage
-
-SRCS= hv_ata_pci_disengage.c ata_if.h
+KMOD= hv_ata_pci_disengage
+SRCS= hv_ata_pci_disengage.c
+SRCS+= ata_if.h bus_if.h device_if.h pci_if.h
.include <bsd.kmod.mk>
diff --git a/sys/modules/hyperv/storvsc/Makefile b/sys/modules/hyperv/storvsc/Makefile
index 5d19884a3469..f39894cf7028 100644
--- a/sys/modules/hyperv/storvsc/Makefile
+++ b/sys/modules/hyperv/storvsc/Makefile
@@ -2,10 +2,10 @@
.PATH: ${.CURDIR}/../../../dev/hyperv/storvsc
-KMOD= hv_storvsc
-
+KMOD= hv_storvsc
SRCS = hv_storvsc_drv_freebsd.c \
hv_vstorage.h
+SRCS+= bus_if.h device_if.h opt_cam.h
CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
-I${.CURDIR}/../../../dev/hyperv/vmbus \
diff --git a/sys/modules/hyperv/utilities/Makefile b/sys/modules/hyperv/utilities/Makefile
index ef0e338358ca..57a242801449 100644
--- a/sys/modules/hyperv/utilities/Makefile
+++ b/sys/modules/hyperv/utilities/Makefile
@@ -3,8 +3,8 @@
.PATH: ${.CURDIR}/../../../dev/hyperv/utilities
KMOD= hv_utils
-
-SRCS = hv_util.c
+SRCS= hv_util.c
+SRCS+= bus_if.h device_if.h
CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
-I${.CURDIR}/../../../dev/hyperv/vmbus
diff --git a/sys/modules/hyperv/vmbus/Makefile b/sys/modules/hyperv/vmbus/Makefile
index df8464e02174..11228cd22c73 100644
--- a/sys/modules/hyperv/vmbus/Makefile
+++ b/sys/modules/hyperv/vmbus/Makefile
@@ -3,15 +3,15 @@
.PATH: ${.CURDIR}/../../../dev/hyperv/vmbus \
${.CURDIR}/../../../dev/hyperv/utilities
-KMOD= hv_vmbus
-
-SRCS = hv_channel.c \
+KMOD= hv_vmbus
+SRCS= hv_channel.c \
hv_channel_mgmt.c \
hv_connection.c \
hv_hv.c \
hv_ring_buffer.c \
hv_vmbus_drv_freebsd.c \
hv_vmbus_priv.h
+SRCS+= bus_if.h device_if.h
CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/include \
-I${.CURDIR}/../../../dev/hyperv/vmbus \