]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
libkmod-module: probe: ignore-command flag can't be used in return
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Mon, 30 Jan 2012 18:33:37 +0000 (16:33 -0200)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Mon, 30 Jan 2012 22:05:34 +0000 (20:05 -0200)
libkmod/libkmod.h

index 525a87ff262cd829e824f89cd9e063b5997131dd..11c81f2d83c89e2bbeaff7baaf176cb73a48575e 100644 (file)
@@ -127,12 +127,12 @@ enum kmod_insert {
 enum kmod_probe {
        KMOD_PROBE_FORCE_VERMAGIC = 0x01,
        KMOD_PROBE_FORCE_MODVERSION = 0x02,
+       KMOD_PROBE_IGNORE_COMMAND = 0x04,
 
        /* codes below can be used in return value, too */
-       KMOD_PROBE_APPLY_BLACKLIST_ALL = 0x04,
-       KMOD_PROBE_APPLY_BLACKLIST = 0x08,
-       KMOD_PROBE_STOP_ON_COMMAND = 0x0F,
-       KMOD_PROBE_IGNORE_COMMAND = 0x10,
+       KMOD_PROBE_APPLY_BLACKLIST_ALL = 0x08,
+       KMOD_PROBE_APPLY_BLACKLIST = 0x0F,
+       KMOD_PROBE_STOP_ON_COMMAND = 0x10,
        KMOD_PROBE_STOP_ON_ALREADY_LOADED = 0x20,
 };