From e6ed06f9041d01c58d2feafcdeaa5a7fd91a81fd Mon Sep 17 00:00:00 2001 From: Sepherosa Ziehau Date: Mon, 31 Oct 2016 01:36:28 +0000 Subject: [PATCH] hyperv/hn: Rename cleaned up RNDIS source file. MFC after: 1 week Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D8361 --- sys/conf/files.amd64 | 2 +- sys/conf/files.i386 | 2 +- sys/dev/hyperv/netvsc/{hv_rndis_filter.c => hn_rndis.c} | 0 sys/modules/hyperv/netvsc/Makefile | 4 +--- 4 files changed, 3 insertions(+), 5 deletions(-) rename sys/dev/hyperv/netvsc/{hv_rndis_filter.c => hn_rndis.c} (100%) diff --git a/sys/conf/files.amd64 b/sys/conf/files.amd64 index 40d185037f95..5b699a08120a 100644 --- a/sys/conf/files.amd64 +++ b/sys/conf/files.amd64 @@ -292,8 +292,8 @@ dev/hwpmc/hwpmc_piv.c optional hwpmc dev/hwpmc/hwpmc_tsc.c optional hwpmc dev/hwpmc/hwpmc_x86.c optional hwpmc dev/hyperv/netvsc/hn_nvs.c optional hyperv +dev/hyperv/netvsc/hn_rndis.c optional hyperv dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c optional hyperv -dev/hyperv/netvsc/hv_rndis_filter.c optional hyperv dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c optional hyperv dev/hyperv/utilities/hv_heartbeat.c optional hyperv dev/hyperv/utilities/hv_kvp.c optional hyperv diff --git a/sys/conf/files.i386 b/sys/conf/files.i386 index ba9622dc6b58..42962548a36a 100644 --- a/sys/conf/files.i386 +++ b/sys/conf/files.i386 @@ -249,8 +249,8 @@ dev/hwpmc/hwpmc_ppro.c optional hwpmc dev/hwpmc/hwpmc_tsc.c optional hwpmc dev/hwpmc/hwpmc_x86.c optional hwpmc dev/hyperv/netvsc/hn_nvs.c optional hyperv +dev/hyperv/netvsc/hn_rndis.c optional hyperv dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c optional hyperv -dev/hyperv/netvsc/hv_rndis_filter.c optional hyperv dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c optional hyperv dev/hyperv/utilities/hv_heartbeat.c optional hyperv dev/hyperv/utilities/hv_kvp.c optional hyperv diff --git a/sys/dev/hyperv/netvsc/hv_rndis_filter.c b/sys/dev/hyperv/netvsc/hn_rndis.c similarity index 100% rename from sys/dev/hyperv/netvsc/hv_rndis_filter.c rename to sys/dev/hyperv/netvsc/hn_rndis.c diff --git a/sys/modules/hyperv/netvsc/Makefile b/sys/modules/hyperv/netvsc/Makefile index ab8082096e66..b27ea406c9cc 100644 --- a/sys/modules/hyperv/netvsc/Makefile +++ b/sys/modules/hyperv/netvsc/Makefile @@ -4,9 +4,7 @@ ${.CURDIR}/../../../dev/hyperv/vmbus KMOD= hv_netvsc -SRCS= hn_nvs.c \ - hv_netvsc_drv_freebsd.c \ - hv_rndis_filter.c +SRCS= hn_nvs.c hn_rndis.c hv_netvsc_drv_freebsd.c SRCS+= bus_if.h device_if.h opt_inet.h opt_inet6.h vmbus_if.h CFLAGS+= -I${.CURDIR}/../../../dev/hyperv/netvsc