mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-28 04:17:47 +00:00
regmap: Make debugfs stubs static inline
Make the debugfs stubs static inline to avoid future compilation issues due to duplicated symbols when CONFIG_DEBUG_FS=n once internal.h is included by multiple source files. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
6f306441e9
commit
bbcf61ca8d
@ -61,9 +61,9 @@ extern void regmap_debugfs_initcall(void);
|
|||||||
extern void regmap_debugfs_init(struct regmap *map);
|
extern void regmap_debugfs_init(struct regmap *map);
|
||||||
extern void regmap_debugfs_exit(struct regmap *map);
|
extern void regmap_debugfs_exit(struct regmap *map);
|
||||||
#else
|
#else
|
||||||
void regmap_debugfs_initcall(void) { }
|
static inline void regmap_debugfs_initcall(void) { }
|
||||||
void regmap_debugfs_init(struct regmap *map) { }
|
static inline void regmap_debugfs_init(struct regmap *map) { }
|
||||||
void regmap_debugfs_exit(struct regmap *map) { }
|
static inline void regmap_debugfs_exit(struct regmap *map) { }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user