Changeset 615 for GPL/branches/uniaud32-next/include/linux/firmware.h
- Timestamp:
- Jan 1, 2021, 5:31:48 AM (5 years ago)
- Location:
- GPL/branches/uniaud32-next
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/include/linux/firmware.h
r381 r615 3 3 #include <linux/module.h> 4 4 #include <linux/types.h> 5 #include <linux/errno.h> 6 5 7 #define FIRMWARE_NAME_MAX 30 6 8 struct firmware { … … 11 13 int request_firmware(const struct firmware **fw, const char *name, 12 14 struct device *device); 13 int request_firmware_nowait( 14 struct module *module, 15 const char *name, struct device *device, void *context, 16 void (*cont)(const struct firmware *fw, void *context)); 15 static inline int request_firmware_nowait( 16 struct module *module, bool uevent, 17 const char *name, struct device *device, gfp_t gfp, void *context, 18 void (*cont)(const struct firmware *fw, void *context)) 19 { 20 return -EINVAL; 21 } 17 22 18 23 void release_firmware(const struct firmware *fw);
Note:
See TracChangeset
for help on using the changeset viewer.