mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

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>
20 lines
396 B
Makefile
20 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
|