Message ID | 20230801233515.166971-21-jim.cromie@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | None | expand |
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)