From owner-svn-src-head@FreeBSD.ORG Sat Sep 28 07:04:04 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6E2E4190; Sat, 28 Sep 2013 07:04:04 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5AD172AE9; Sat, 28 Sep 2013 07:04:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8S744Mm074962; Sat, 28 Sep 2013 07:04:04 GMT (envelope-from uqs@svn.freebsd.org) Received: (from uqs@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8S743An074956; Sat, 28 Sep 2013 07:04:03 GMT (envelope-from uqs@svn.freebsd.org) Message-Id: <201309280704.r8S743An074956@svn.freebsd.org> From: Ulrich Spoerlein Date: Sat, 28 Sep 2013 07:04:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r255923 - in head/sys/modules/hyperv: netvsc stordisengage storvsc utilities vmbus X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 07:04:04 -0000 Author: uqs Date: Sat Sep 28 07:04:03 2013 New Revision: 255923 URL: http://svnweb.freebsd.org/changeset/base/255923 Log: Fix make depend, apply a bit of style. Approved by: re (marius) Reviewed by: grehan Modified: head/sys/modules/hyperv/netvsc/Makefile head/sys/modules/hyperv/stordisengage/Makefile head/sys/modules/hyperv/storvsc/Makefile head/sys/modules/hyperv/utilities/Makefile head/sys/modules/hyperv/vmbus/Makefile Modified: head/sys/modules/hyperv/netvsc/Makefile ============================================================================== --- head/sys/modules/hyperv/netvsc/Makefile Sat Sep 28 05:56:37 2013 (r255922) +++ head/sys/modules/hyperv/netvsc/Makefile Sat Sep 28 07:04:03 2013 (r255923) @@ -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 Modified: head/sys/modules/hyperv/stordisengage/Makefile ============================================================================== --- head/sys/modules/hyperv/stordisengage/Makefile Sat Sep 28 05:56:37 2013 (r255922) +++ head/sys/modules/hyperv/stordisengage/Makefile Sat Sep 28 07:04:03 2013 (r255923) @@ -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 Modified: head/sys/modules/hyperv/storvsc/Makefile ============================================================================== --- head/sys/modules/hyperv/storvsc/Makefile Sat Sep 28 05:56:37 2013 (r255922) +++ head/sys/modules/hyperv/storvsc/Makefile Sat Sep 28 07:04:03 2013 (r255923) @@ -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 \ Modified: head/sys/modules/hyperv/utilities/Makefile ============================================================================== --- head/sys/modules/hyperv/utilities/Makefile Sat Sep 28 05:56:37 2013 (r255922) +++ head/sys/modules/hyperv/utilities/Makefile Sat Sep 28 07:04:03 2013 (r255923) @@ -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 Modified: head/sys/modules/hyperv/vmbus/Makefile ============================================================================== --- head/sys/modules/hyperv/vmbus/Makefile Sat Sep 28 05:56:37 2013 (r255922) +++ head/sys/modules/hyperv/vmbus/Makefile Sat Sep 28 07:04:03 2013 (r255923) @@ -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 \