blob: ebc287cde336126247aab5fc2968725e1b393e99 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Linux WiMAX Stack
4 * Debug levels control file for the wimax module
5 *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 * Copyright (C) 2007-2008 Intel Corporation <linux-wimax@intel.com>
7 * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00008 */
9#ifndef __debug_levels__h__
10#define __debug_levels__h__
11
12/* Maximum compile and run time debug level for all submodules */
13#define D_MODULENAME wimax
14#define D_MASTER CONFIG_WIMAX_DEBUG_LEVEL
15
16#include <linux/wimax/debug.h>
17
18/* List of all the enabled modules */
19enum d_module {
20 D_SUBMODULE_DECLARE(debugfs),
21 D_SUBMODULE_DECLARE(id_table),
22 D_SUBMODULE_DECLARE(op_msg),
23 D_SUBMODULE_DECLARE(op_reset),
24 D_SUBMODULE_DECLARE(op_rfkill),
25 D_SUBMODULE_DECLARE(op_state_get),
26 D_SUBMODULE_DECLARE(stack),
27};
28
29#endif /* #ifndef __debug_levels__h__ */