mac80211: backport firmware_request_nowarn and firmware_request_cache

Required for an mt76 update to the latest version from master

Signed-off-by: Felix Fietkau <nbd@nbd.name>
openwrt-18.06
Felix Fietkau 2018-11-09 15:20:21 +01:00
parent 3589915a43
commit e4b0704a51
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
--- a/backport-include/linux/firmware.h
+++ b/backport-include/linux/firmware.h
@@ -5,5 +5,16 @@
#if LINUX_VERSION_IS_LESS(3,14,0)
#define request_firmware_direct(fw, name, device) request_firmware(fw, name, device)
#endif
+#if LINUX_VERSION_IS_LESS(4,18,0)
+#define firmware_request_nowarn(fw, name, device) request_firmware(fw, name, device)
+#endif
+
+#if LINUX_VERSION_IS_LESS(4,17,0)
+#define firmware_request_cache LINUX_BACKPORT(firmware_request_cache)
+static inline int firmware_request_cache(struct device *device, const char *name)
+{
+ return 0;
+}
+#endif
#endif /* __BACKPORT_LINUX_FIRMWARE_H */