xref: /linux/drivers/media/platform/st/sti/c8sectpfe/c8sectpfe-debugfs.h (revision 001821b0e79716c4e17c71d8e053a23599a7a508)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * c8sectpfe-debugfs.h - C8SECTPFE STi DVB driver debugfs header
4  *
5  * Copyright (c) STMicroelectronics 2015
6  *
7  * Authors: Peter Griffin <peter.griffin@linaro.org>
8  */
9 
10 #ifndef __C8SECTPFE_DEBUG_H
11 #define __C8SECTPFE_DEBUG_H
12 
13 #include "c8sectpfe-core.h"
14 
15 #if defined(CONFIG_DEBUG_FS)
16 void c8sectpfe_debugfs_init(struct c8sectpfei *);
17 void c8sectpfe_debugfs_exit(struct c8sectpfei *);
18 #else
19 static inline void c8sectpfe_debugfs_init(struct c8sectpfei *) {};
20 static inline void c8sectpfe_debugfs_exit(struct c8sectpfei *) {};
21 #endif
22 
23 #endif /* __C8SECTPFE_DEBUG_H */
24