diff options
author | Denis Vlasenko | 2009-04-21 11:09:40 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-04-21 11:09:40 +0000 |
commit | 5e34ff29bcc870936ab18172f438a34d042d4e03 (patch) | |
tree | a5e7a528f2f916eb883f1161eadceacdf2dca4be /modutils/modutils.h | |
parent | 8b814b4a349e2262c0ad25793b05206a14651ebb (diff) | |
download | busybox-5e34ff29bcc870936ab18172f438a34d042d4e03.zip busybox-5e34ff29bcc870936ab18172f438a34d042d4e03.tar.gz |
*: 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!
Diffstat (limited to 'modutils/modutils.h')
-rw-r--r-- | modutils/modutils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/modutils.h b/modutils/modutils.h index 5104f1b..8cca5cc 100644 --- a/modutils/modutils.h +++ b/modutils/modutils.h @@ -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, |