blob: e7661df19a016df645639e01d8a1677d0c6dedac [file] [log] [blame]
developer4f0d84b2023-03-03 14:21:44 +08001From 227f29f577dda88bda5c6213a655e89ff3b9203c Mon Sep 17 00:00:00 2001
developereb6a0182022-12-12 18:53:32 +08002From: Shayne Chen <shayne.chen@mediatek.com>
3Date: Tue, 13 Dec 2022 10:38:13 +0800
developerfd8e1152023-02-14 11:29:23 +08004Subject: [PATCH 4002/4005] mt76: include header files for module param
developereb6a0182022-12-12 18:53:32 +08005
6---
7 mcu.c | 1 +
8 mt7615/mcu.c | 1 +
9 mt76_connac_mcu.c | 1 +
10 mt7915/mcu.c | 1 +
11 4 files changed, 4 insertions(+)
12
13diff --git a/mcu.c b/mcu.c
developerc04f5402023-02-03 09:22:26 +080014index a8cafa39..fa4b0544 100644
developereb6a0182022-12-12 18:53:32 +080015--- a/mcu.c
16+++ b/mcu.c
17@@ -4,6 +4,7 @@
18 */
19
20 #include "mt76.h"
21+#include <linux/moduleparam.h>
22
23 struct sk_buff *
24 __mt76_mcu_msg_alloc(struct mt76_dev *dev, const void *data,
25diff --git a/mt7615/mcu.c b/mt7615/mcu.c
developerc04f5402023-02-03 09:22:26 +080026index eea398c7..4593b2e1 100644
developereb6a0182022-12-12 18:53:32 +080027--- a/mt7615/mcu.c
28+++ b/mt7615/mcu.c
29@@ -10,6 +10,7 @@
30 #include "mcu.h"
31 #include "mac.h"
32 #include "eeprom.h"
33+#include <linux/moduleparam.h>
34
35 static bool prefer_offload_fw = true;
36 module_param(prefer_offload_fw, bool, 0644);
37diff --git a/mt76_connac_mcu.c b/mt76_connac_mcu.c
developerc04f5402023-02-03 09:22:26 +080038index 6f5c81ce..1baa4a03 100644
developereb6a0182022-12-12 18:53:32 +080039--- a/mt76_connac_mcu.c
40+++ b/mt76_connac_mcu.c
41@@ -4,6 +4,7 @@
42 #include <linux/firmware.h>
43 #include "mt76_connac2_mac.h"
44 #include "mt76_connac_mcu.h"
45+#include <linux/module.h>
46
47 int mt76_connac_mcu_start_firmware(struct mt76_dev *dev, u32 addr, u32 option)
48 {
49diff --git a/mt7915/mcu.c b/mt7915/mcu.c
developer4f0d84b2023-03-03 14:21:44 +080050index e1c08178..37291865 100644
developereb6a0182022-12-12 18:53:32 +080051--- a/mt7915/mcu.c
52+++ b/mt7915/mcu.c
53@@ -6,6 +6,7 @@
54 #include "mcu.h"
55 #include "mac.h"
56 #include "eeprom.h"
57+#include <linux/moduleparam.h>
58
59 #define fw_name(_dev, name, ...) ({ \
60 char *_fw; \
61--
developerc04f5402023-02-03 09:22:26 +0800622.18.0
developereb6a0182022-12-12 18:53:32 +080063