blob: 096a54fc920843a29b0a41e6dea1cd6430ef5e76 [file] [log] [blame]
developerf043db82022-12-21 14:59:23 +08001From c38e6c0b746781a43faa8a7391f45f8f1110117d 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
developer699cda22022-12-17 15:21:57 +08004Subject: [PATCH 4002/4003] 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
developer699cda22022-12-17 15:21:57 +080014index a8cafa3..fa4b054 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
developer699cda22022-12-17 15:21:57 +080026index 83f3030..e917d02 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
developer699cda22022-12-17 15:21:57 +080038index 14ce09e..d406013 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
developer699cda22022-12-17 15:21:57 +080050index 387967d..88ce44f 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--
developer699cda22022-12-17 15:21:57 +0800622.36.1
developereb6a0182022-12-12 18:53:32 +080063