From eb076ae8db9c43730771fca5d4f9ee5f33d0959f Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sun, 2 Dec 2018 13:06:34 +0100 Subject: [PATCH] mt76: Add missing include of linux/module.h MODULE_FIRMWARE() is used in usb_mcu.c and provided by linux/module.h, but this header file is not directly included. This causes problems in backports with some kernel versions. Add the missing include. Signed-off-by: Hauke Mehrtens --- mt76x0/usb_mcu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mt76x0/usb_mcu.c b/mt76x0/usb_mcu.c index 9d7585029..f391d2d21 100644 --- a/mt76x0/usb_mcu.c +++ b/mt76x0/usb_mcu.c @@ -15,6 +15,7 @@ */ #include #include +#include #include "mt76x0.h" #include "mcu.h"