From: Johannes Berg <johannes.berg@xxxxxxxxx> On old kernels, boolean module parameters had to be int. When we backport, they're bool, and thus cause warnings. Suppress the warnings by redefining the parameter check, it's not entirely clear that it'll do the right thing though? Signed-off-by: Johannes Berg <johannes.berg@xxxxxxxxx> --- backport/backport-include/linux/module.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backport/backport-include/linux/module.h b/backport/backport-include/linux/module.h index 6bddc76..82c96bd 100644 --- a/backport/backport-include/linux/module.h +++ b/backport/backport-include/linux/module.h @@ -59,4 +59,9 @@ extern void backport_dependency_symbol(void); } \ void cleanup_module(void) __attribute__((alias("__exit_compat"))); +#if LINUX_VERSION_CODE < KERNEL_VERSION(3,3,0) +#undef param_check_bool +#define param_check_bool(name, p) __param_check(name, p, bool) +#endif + #endif /* __BACKPORT_LINUX_MODULE_H */ -- 1.8.0 -- To unsubscribe from this list: send the line "unsubscribe backports" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html