linux-stable/drivers/staging/wfx/debug.h
Jérôme Pouiller b262f38c33 staging: wfx: remove useless comments after #endif
Comments after the last #endif of header files don't bring any
information and are redundant with the name of the file. Drop them.

Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20210913130203.1903622-30-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2021-09-14 09:16:33 +02:00

19 lines
407 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Debugfs interface.
*
* Copyright (c) 2017-2019, Silicon Laboratories, Inc.
* Copyright (c) 2011, ST-Ericsson
*/
#ifndef WFX_DEBUG_H
#define WFX_DEBUG_H
struct wfx_dev;
int wfx_debug_init(struct wfx_dev *wdev);
const char *get_hif_name(unsigned long id);
const char *get_mib_name(unsigned long id);
const char *get_reg_name(unsigned long id);
#endif