Loading include/linux/kmod.h +2 −1 Original line number Diff line number Diff line Loading @@ -29,11 +29,12 @@ /* modprobe exit status on success, -ve on error. Return value * usually useless though. */ extern int request_module(const char * name, ...) __attribute__ ((format (printf, 1, 2))); #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x))) #else static inline int request_module(const char * name, ...) { return -ENOSYS; } #define try_then_request_module(x, mod...) (x) #endif #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x))) struct key; struct file; Loading Loading
include/linux/kmod.h +2 −1 Original line number Diff line number Diff line Loading @@ -29,11 +29,12 @@ /* modprobe exit status on success, -ve on error. Return value * usually useless though. */ extern int request_module(const char * name, ...) __attribute__ ((format (printf, 1, 2))); #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x))) #else static inline int request_module(const char * name, ...) { return -ENOSYS; } #define try_then_request_module(x, mod...) (x) #endif #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x))) struct key; struct file; Loading