From owner-svn-src-head@FreeBSD.ORG Sun Sep 29 00:47:06 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7C931310; Sun, 29 Sep 2013 00:47:06 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mx1.sbone.de (mx1.sbone.de [IPv6:2a01:4f8:130:3ffc::401:25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D1C7C2C16; Sun, 29 Sep 2013 00:47:05 +0000 (UTC) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id 989D525D3810; Sun, 29 Sep 2013 00:47:03 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id B1D2FBF8CB5; Sun, 29 Sep 2013 00:47:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id oUKZp9XUHB1G; Sun, 29 Sep 2013 00:47:00 +0000 (UTC) Received: from nv.sbone.de (nv.sbone.de [IPv6:fde9:577b:c1a9:31::2013:138]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id 9390FBF8C77; Sun, 29 Sep 2013 00:47:00 +0000 (UTC) Date: Sun, 29 Sep 2013 00:46:59 +0000 (UTC) From: "Bjoern A. Zeeb" To: Ulrich Spoerlein Subject: Re: svn commit: r255923 - in head/sys/modules/hyperv: netvsc stordisengage storvsc utilities vmbus In-Reply-To: <201309280704.r8S743An074956@svn.freebsd.org> Message-ID: References: <201309280704.r8S743An074956@svn.freebsd.org> X-OpenPGP-Key-Id: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org 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: Sun, 29 Sep 2013 00:47:06 -0000 On Sat, 28 Sep 2013, Ulrich Spoerlein wrote: > 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. please try not to in one commit. It's a pain to figure out the function from the style change -- even for Makefiles. > 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 \ > -- Bjoern A. Zeeb ????????? ??? ??????? ??????: '??? ??? ???? ?????? ??????? ?? ?? ??????? ??????? ??? ????? ????? ???? ?????? ?? ????? ????', ????????? ?????????, "??? ????? ?? ?????", ?.???