diff options
| author | Marius Strobl <marius@FreeBSD.org> | 2023-08-07 16:39:24 +0000 |
|---|---|---|
| committer | Marius Strobl <marius@FreeBSD.org> | 2023-08-08 20:30:13 +0000 |
| commit | 37c8ee8847faa53432809cae2ecc11b80c4eab2f (patch) | |
| tree | afc77bccc6b6e06f4eee827a1c117d059aea0d4f /sys/modules | |
| parent | 458e0c1b667354a45cb233ea7fc0256934e15301 (diff) | |
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 1 | ||||
| -rw-r--r-- | sys/modules/ath_ahb/Makefile | 43 | ||||
| -rw-r--r-- | sys/modules/ath_main/Makefile | 1 | ||||
| -rw-r--r-- | sys/modules/ath_pci/Makefile | 43 |
4 files changed, 1 insertions, 87 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 0ef69528b45e..8b5e48a2d53f 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -54,7 +54,6 @@ SUBDIR= \ ath_hal_ar9300 \ ath_main \ ath_rate \ - ath_pci \ ${_autofs} \ axgbe \ backlight \ diff --git a/sys/modules/ath_ahb/Makefile b/sys/modules/ath_ahb/Makefile deleted file mode 100644 index 02278eadea2b..000000000000 --- a/sys/modules/ath_ahb/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# -# Copyright (c) 2011 Adrian Chadd, Xenion Pty Ltd -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer, -# without modification. -# 2. Redistributions in binary form must reproduce at minimum a disclaimer -# similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any -# redistribution must be conditioned upon including a substantially -# similar Disclaimer requirement for further binary redistribution. -# -# NO WARRANTY -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY -# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL -# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, -# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER -# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -# THE POSSIBILITY OF SUCH DAMAGES. -# -# $FreeBSD$ -# - -.PATH: ${SRCTOP}/sys/dev/ath -.PATH: ${SRCTOP}/sys/dev/ath/ath_hal - -KMOD= if_ath_ahb -SRCS= if_ath_ahb.c -SRCS+= device_if.h bus_if.h opt_wlan.h opt_ath.h opt_ah.h - -CFLAGS+= -I. -I${SRCTOP}/sys/dev/ath -I${SRCTOP}/sys/dev/ath/ath_hal - -.include <bsd.kmod.mk> - -CWARNFLAGS+= ${NO_WUNUSED_BUT_SET_VARIABLE} diff --git a/sys/modules/ath_main/Makefile b/sys/modules/ath_main/Makefile index 4cf55d42fc92..6a08874115ac 100644 --- a/sys/modules/ath_main/Makefile +++ b/sys/modules/ath_main/Makefile @@ -39,6 +39,7 @@ SRCS= if_ath.c if_ath_alq.c if_ath_debug.c if_ath_keycache.c if_ath_sysctl.c SRCS+= if_ath_tx.c if_ath_tx_ht.c if_ath_led.c if_ath_rx.c if_ath_tdma.c SRCS+= if_ath_beacon.c if_ath_rx_edma.c if_ath_tx_edma.c if_ath_spectral.c SRCS+= if_ath_btcoex.c if_ath_btcoex_mci.c if_ath_lna_div.c if_ath_ioctl.c if_ath_descdma.c +SRCS+= if_ath_pci.c SRCS+= device_if.h bus_if.h pci_if.h opt_inet.h opt_ath.h opt_ah.h opt_wlan.h diff --git a/sys/modules/ath_pci/Makefile b/sys/modules/ath_pci/Makefile deleted file mode 100644 index a5a2d87925ca..000000000000 --- a/sys/modules/ath_pci/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# -# Copyright (c) 2011 Adrian Chadd, Xenion Pty Ltd -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer, -# without modification. -# 2. Redistributions in binary form must reproduce at minimum a disclaimer -# similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any -# redistribution must be conditioned upon including a substantially -# similar Disclaimer requirement for further binary redistribution. -# -# NO WARRANTY -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY -# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL -# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, -# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER -# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -# THE POSSIBILITY OF SUCH DAMAGES. -# -# $FreeBSD$ -# - -.PATH: ${SRCTOP}/sys/dev/ath -.PATH: ${SRCTOP}/sys/dev/ath/ath_hal - -KMOD= if_ath_pci -SRCS= if_ath_pci.c -SRCS+= device_if.h bus_if.h pci_if.h opt_wlan.h opt_ath.h opt_ah.h - -CFLAGS+= -I. -I${SRCTOP}/sys/dev/ath -I${SRCTOP}/sys/dev/ath/ath_hal - -.include <bsd.kmod.mk> - -CWARNFLAGS+= ${NO_WUNUSED_BUT_SET_VARIABLE} |
