Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/mt76.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-12-06 19:52:00 +0300
committerFelix Fietkau <nbd@openwrt.org>2015-12-06 19:52:00 +0300
commite20a9c13a5159b68e63522c7223830252fde0064 (patch)
treea06719ebe93f36d67f730bd6ed53a93a5b1275b1 /util.c
parent00af5f31055d0ec2350d777a5781be59d4f3057a (diff)
move mmio functions/init to mt76.ko
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'util.c')
-rw-r--r--util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util.c b/util.c
index a00a71d0..f25aff9d 100644
--- a/util.c
+++ b/util.c
@@ -11,6 +11,7 @@
* GNU General Public License for more details.
*/
+#include <linux/module.h>
#include "mt76x2.h"
void mt76_remove_hdr_pad(struct sk_buff *skb)
@@ -41,3 +42,5 @@ int mt76_insert_hdr_pad(struct sk_buff *skb)
return 0;
}
EXPORT_SYMBOL_GPL(mt76_insert_hdr_pad);
+
+MODULE_LICENSE("GPL");