#ifndef __BACKPORT_LINUX_FIRMWARE_H #define __BACKPORT_LINUX_FIRMWARE_H #include_next #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 #ifndef FW_ACTION_NOUEVENT #define FW_ACTION_NOUEVENT FW_ACTION_NOHOTPLUG #endif #ifndef FW_ACTION_UEVENT #define FW_ACTION_UEVENT FW_ACTION_HOTPLUG #endif #endif /* __BACKPORT_LINUX_FIRMWARE_H */