mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-05 19:32:18 +00:00
8122367eeb
* chore(wl-kmod): sync with rpmfusion patches so it builds on new kernels
* chore(wl-kmod): remove offending wext patch
(cherry picked from commit 1603c09a7b)
Co-authored-by: LionHeartP <parrr85@gmail.com>
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From 3b780d05b0f9a3b36196c0cfedb57cb2241f87f8 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Nicolas=20Vi=C3=A9ville?= <nicolas.vieville@uphf.fr>
|
|
Date: Tue, 17 Jun 2025 14:49:31 +0200
|
|
Subject: [PATCH] wl_linux.c: add MODULE_DESCRIPTION macro related to commit
|
|
"modpost: require a MODULE_DESCRIPTION()" (Jeff Johnson, 11 Mar 2025)
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Nicolas Viéville <nicolas.vieville@uphf.fr>
|
|
---
|
|
src/wl/sys/wl_linux.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/src/wl/sys/wl_linux.c b/src/wl/sys/wl_linux.c
|
|
index 3c25ce4..0c08fe7 100644
|
|
--- a/src/wl/sys/wl_linux.c
|
|
+++ b/src/wl/sys/wl_linux.c
|
|
@@ -164,6 +164,8 @@ static int wl_set_radio_block(void *data, bool blocked);
|
|
static void wl_report_radio_state(wl_info_t *wl);
|
|
#endif
|
|
|
|
+// Related to commit "modpost: require a MODULE_DESCRIPTION()" (Jeff Johnson, 11 Mar 2025)
|
|
+MODULE_DESCRIPTION("Broadcom STA wireless driver [unmaintained, out-of-tree]");
|
|
MODULE_LICENSE("MIXED/Proprietary");
|
|
|
|
static struct pci_device_id wl_id_table[] =
|
|
--
|
|
2.49.0
|
|
|