mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 19:35:15 +07:00
staging: ccree: make stub function static inline
The debugfs interface defines stub function if debugfs is not enabled, which were missing the 'static inline' qualifiers causing sparse warnings. Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
65073e6ea9
commit
5d5583d0e2
@ -13,19 +13,19 @@ void cc_debugfs_fini(struct cc_drvdata *drvdata);
|
||||
|
||||
#else
|
||||
|
||||
int cc_debugfs_global_init(void)
|
||||
static inline int cc_debugfs_global_init(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void cc_debugfs_global_fini(void) {}
|
||||
static inline void cc_debugfs_global_fini(void) {}
|
||||
|
||||
int cc_debugfs_init(struct cc_drvdata *drvdata)
|
||||
static inline int cc_debugfs_init(struct cc_drvdata *drvdata)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void cc_debugfs_fini(struct cc_drvdata *drvdata) {}
|
||||
static inline void cc_debugfs_fini(struct cc_drvdata *drvdata) {}
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user