mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-04 04:02:26 +00:00
3a1d429ebd
There's no driver left using this other than ipw2200, so move the data bookkeeping and code into libipw. Link: https://patch.msgid.link/20241007210254.037d864cda7d.Ib2197cb056ff05746d3521a5fba637062acb7314@changeid Signed-off-by: Johannes Berg <johannes.berg@intel.com>
21 lines
396 B
Makefile
21 lines
396 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Intel Centrino wireless drivers
|
|
#
|
|
|
|
obj-$(CONFIG_IPW2100) += ipw2100.o
|
|
obj-$(CONFIG_IPW2200) += ipw2200.o
|
|
|
|
obj-$(CONFIG_LIBIPW) += libipw.o
|
|
libipw-objs := \
|
|
libipw_module.o \
|
|
libipw_tx.o \
|
|
libipw_rx.o \
|
|
libipw_wx.o \
|
|
libipw_geo.o \
|
|
libipw_spy.o \
|
|
libipw_crypto.o \
|
|
libipw_crypto_ccmp.o \
|
|
libipw_crypto_tkip.o \
|
|
libipw_crypto_wep.o
|