--- include/linux/dynamic_debug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/dynamic_debug.h b/include/linux/dynamic_debug.h index 871de0c32034..9b86c49173f9 100644 --- a/include/linux/dynamic_debug.h +++ b/include/linux/dynamic_debug.h @@ -172,9 +172,9 @@ struct ddebug_class_param { #define __DYNDBG_CLASSMAP_PARAM(_name, _bits, _var, _flags) \ static struct ddebug_class_param _name##_##_flags = { \ - .bits = &_bits, \ + .bits = &(_bits), \ .flags = #_flags, \ - .map = &_var, \ + .map = &(_var), \ }; \ module_param_cb(_name, ¶m_ops_dyndbg_classes, \ &_name##_##_flags, 0600) -- 2.41.0