]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
Removing comments saying flags are not implemented
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Tue, 20 Dec 2011 21:31:14 +0000 (19:31 -0200)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Tue, 20 Dec 2011 21:31:14 +0000 (19:31 -0200)
Both removal and insertion flags are already implemented.

libkmod/libkmod.h

index 2d53aae05d5f70855b6efa9ea128949887f0e0a6..38b81cfd44f19fab6b30d90d7f4a700096bd387e 100644 (file)
@@ -74,13 +74,13 @@ struct kmod_list *kmod_list_last(const struct kmod_list *first_entry);
                list_entry != NULL; \
                list_entry = kmod_list_prev(first_entry, list_entry))
 
-/* Removal flags, not implemented yet */
+/* Removal flags */
 enum kmod_remove {
        KMOD_REMOVE_FORCE = O_TRUNC,
        KMOD_REMOVE_NOWAIT = O_NONBLOCK,
 };
 
-/* Insertion flags, not implemented yet */
+/* Insertion flags */
 enum kmod_insert {
        KMOD_INSERT_FORCE_VERMAGIC = 0x1,
        KMOD_INSERT_FORCE_MODVERSION = 0x2,