From c41639c2b73bbae275a9bc12fc839b96749b8682 Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Sat, 14 May 2016 23:08:34 +0000 Subject: [PATCH] [bwn] add in the new phy common and utils files. They're not yet used by included code; that'll come next. --- sys/conf/files | 2 ++ sys/modules/bwn/Makefile | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/sys/conf/files b/sys/conf/files index 451d94eeac0..f172a526142 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1171,10 +1171,12 @@ dev/bwi/if_bwi_pci.c optional bwi pci dev/bwn/if_bwn.c optional bwn siba_bwn \ compile-with "${NORMAL_C} ${NO_WSOMETIMES_UNINITIALIZED}" dev/bwn/if_bwn_pci.c optional bwn pci bhnd | bwn pci bhndbus +dev/bwn/if_bwn_phy_common.c optional bwn siba_bwn dev/bwn/if_bwn_phy_g.c optional bwn siba_bwn \ compile-with "${NORMAL_C} ${NO_WSOMETIMES_UNINITIALIZED}" dev/bwn/if_bwn_phy_lp.c optional bwn siba_bwn \ compile-with "${NORMAL_C} ${NO_WSOMETIMES_UNINITIALIZED}" +dev/bwn/if_bwn_util.c optional bwn siba_bwn dev/bwn/bwn_mac.c optional bwn bhnd | bwn bhndbus dev/cardbus/cardbus.c optional cardbus dev/cardbus/cardbus_cis.c optional cardbus diff --git a/sys/modules/bwn/Makefile b/sys/modules/bwn/Makefile index 36ca9650fd6..a55ee9640af 100644 --- a/sys/modules/bwn/Makefile +++ b/sys/modules/bwn/Makefile @@ -4,7 +4,13 @@ KMOD= if_bwn SRCS= if_bwn.c if_bwnreg.h if_bwnvar.h +SRCS+= if_bwn_util.c + +# PHY +SRCS+= if_bwn_phy_common.c SRCS+= if_bwn_phy_g.c if_bwn_phy_lp.c + +# Other SRCS+= device_if.h bus_if.h pci_if.h .include