*: mass renaming of USE_XXXX to IF_XXXX
and SKIP_XXXX to IF_NOT_XXXX - the second one was especially badly named. It was not skipping anything!
This commit is contained in:
@ -26,10 +26,10 @@ char *parse_cmdline_module_options(char **argv) FAST_FUNC;
|
||||
|
||||
#define INSMOD_OPTS \
|
||||
"vq" \
|
||||
USE_FEATURE_2_4_MODULES("sLo:fkx") \
|
||||
USE_FEATURE_INSMOD_LOAD_MAP("m")
|
||||
IF_FEATURE_2_4_MODULES("sLo:fkx") \
|
||||
IF_FEATURE_INSMOD_LOAD_MAP("m")
|
||||
|
||||
#define INSMOD_ARGS USE_FEATURE_2_4_MODULES(, NULL)
|
||||
#define INSMOD_ARGS IF_FEATURE_2_4_MODULES(, NULL)
|
||||
|
||||
enum {
|
||||
INSMOD_OPT_VERBOSE = 0x0001,
|
||||
|
Reference in New Issue
Block a user