18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Linux WiMAX Stack
48c2ecf20Sopenharmony_ci * Debug levels control file for the wimax module
58c2ecf20Sopenharmony_ci *
68c2ecf20Sopenharmony_ci * Copyright (C) 2007-2008 Intel Corporation <linux-wimax@intel.com>
78c2ecf20Sopenharmony_ci * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
88c2ecf20Sopenharmony_ci */
98c2ecf20Sopenharmony_ci#ifndef __debug_levels__h__
108c2ecf20Sopenharmony_ci#define __debug_levels__h__
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci/* Maximum compile and run time debug level for all submodules */
138c2ecf20Sopenharmony_ci#define D_MODULENAME wimax
148c2ecf20Sopenharmony_ci#define D_MASTER CONFIG_WIMAX_DEBUG_LEVEL
158c2ecf20Sopenharmony_ci
168c2ecf20Sopenharmony_ci#include <linux/wimax/debug.h>
178c2ecf20Sopenharmony_ci
188c2ecf20Sopenharmony_ci/* List of all the enabled modules */
198c2ecf20Sopenharmony_cienum d_module {
208c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(debugfs),
218c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(id_table),
228c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(op_msg),
238c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(op_reset),
248c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(op_rfkill),
258c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(op_state_get),
268c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(stack),
278c2ecf20Sopenharmony_ci};
288c2ecf20Sopenharmony_ci
298c2ecf20Sopenharmony_ci#endif /* #ifndef __debug_levels__h__ */
30