debug.h (419B)
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Debugfs interface. 4 * 5 * Copyright (c) 2017-2019, Silicon Laboratories, Inc. 6 * Copyright (c) 2011, ST-Ericsson 7 */ 8#ifndef WFX_DEBUG_H 9#define WFX_DEBUG_H 10 11struct wfx_dev; 12 13int wfx_debug_init(struct wfx_dev *wdev); 14 15const char *wfx_get_hif_name(unsigned long id); 16const char *wfx_get_mib_name(unsigned long id); 17const char *wfx_get_reg_name(unsigned long id); 18 19#endif