Ramkumar Ramachandra <artagnon@xxxxxxxxx> writes: > @@ -109,14 +108,40 @@ static void verify_opt_compatible(const char *me, const char *base_opt, ...) > va_end(ap); > } > > +static void verify_opt_mutually_compatible(const char *me, ...) > +{ > + const char *opt1, *opt2; > + va_list ap; > + int set; > + > + va_start(ap, me); > + while ((opt1 = va_arg(ap, const char *))) { (style) Many lines indented with SP thoughout the patch. > + set = va_arg(ap, int); > + if (set) > + break; > + } > + if (!opt1) -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html