aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2022-11-28 15:48:44 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2022-11-28 15:48:44 +0000
commit4495b4eb510d87277ed2dd4d27f7cebc7a76b4a8 (patch)
tree263c9c473ce0929dcdbed2caec916f2e462c66ff /sys/modules
parent1cbe5012cfe10226dd365af325a01de5d4c15f5d (diff)
downloadsrc-4495b4eb510d87277ed2dd4d27f7cebc7a76b4a8.tar.gz
src-4495b4eb510d87277ed2dd4d27f7cebc7a76b4a8.zip
rtw88: correct SRCS+= in Makefile
Properly spell a SRCS+= for an optional file (this is why it stayed unnoticed so far). MFC after: 3 days
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/rtw88/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/rtw88/Makefile b/sys/modules/rtw88/Makefile
index 8ac4a8b8be65..2df00358821c 100644
--- a/sys/modules/rtw88/Makefile
+++ b/sys/modules/rtw88/Makefile
@@ -15,7 +15,7 @@ SRCS+= phy.c ps.c regd.c
SRCS+= rx.c sar.c sec.c tx.c util.c
.if defined(WITH_CONFIG_PM) && ${WITH_CONFIG_PM} > 0
-SRCR+= wow.c
+SRCS+= wow.c
CFLAGS+= -DCONFIG_PM=${WITH_CONFIG_PM}
.endif