Lines Matching full:submodule

19  * selection is done per-submodule (as they are declared by the user
99 * and then register each submodule with:
110 * On each submodule (for example, .c files), the debug infrastructure
125 * than the current debug level of their submodule, they'll be
196 * Store a submodule's runtime debug level and name
262 * D_SUBMODULE - Name of the current submodule
264 * #define in your submodule .c file before #including debug-levels.h
265 * to the name of the current submodule as previously declared and
272 * (meaning they belong to the same submodule categorization).
279 * D_SUBMODULE_DECLARE - Declare a submodule for runtime debug level control
281 * @_name: name of the submodule, restricted to the chars that make up a
299 * D_SUBMODULE_DEFINE - Define a submodule for runtime debug level control
301 * @_name: name of the submodule, restricted to the chars that make up a
403 * Export a submodule's debug level over debugfs as PREFIXSUBMODULE
406 * @submodule: name of submodule (not a string, just the name)
421 const char *submodule, u8 level, const char *tag) in d_submodule_set() argument
433 if (!strcmp(itr->name, submodule)) { in d_submodule_set()
438 printk(KERN_ERR "%s: unknown submodule %s\n", tag, submodule); in d_submodule_set()
451 * and NAME is the name of the submodule.
458 char submodule[130], *params, *params_orig, *token, *colon; in d_parse_params() local
477 tokens = sscanf(token, "%s\n%u", submodule, &level); in d_parse_params()
482 submodule, level, tag); in d_parse_params()
485 "SUBMODULE:LEVEL (%d tokens)\n", in d_parse_params()