18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Intel Wireless WiMAX Connection 2400m
48c2ecf20Sopenharmony_ci * Debug levels control file for the i2400m 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 i2400m
148c2ecf20Sopenharmony_ci#define D_MASTER CONFIG_WIMAX_I2400M_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(control),
218c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(driver),
228c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(debugfs),
238c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(fw),
248c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(netdev),
258c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(rfkill),
268c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(rx),
278c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(sysfs),
288c2ecf20Sopenharmony_ci	D_SUBMODULE_DECLARE(tx),
298c2ecf20Sopenharmony_ci};
308c2ecf20Sopenharmony_ci
318c2ecf20Sopenharmony_ci
328c2ecf20Sopenharmony_ci#endif /* #ifndef __debug_levels__h__ */
33