public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] regmap: Fix regmap compilation with CONFIG_DEBUGFS=n
@ 2011-09-05 19:29 Lars-Peter Clausen
  2011-09-05 19:42 ` Mark Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Lars-Peter Clausen @ 2011-09-05 19:29 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-kernel, Lars-Peter Clausen

With CONFIG_DEBUGFS disabled the regmap compilation fails with the following
errors:

	drivers/base/regmap/regcache.o: In function `regmap_debugfs_initcall':
	drivers/base/regmap/internal.h:96: multiple definition of `regmap_debugfs_initcall'
	drivers/base/regmap/regmap.o:drivers/base/regmap/internal.h:96: first defined here
	drivers/base/regmap/regcache.o: In function `regmap_debugfs_init':
	drivers/base/regmap/internal.h:97: multiple definition of `regmap_debugfs_init'
	drivers/base/regmap/regmap.o:drivers/base/regmap/internal.h:97: first
	defined here drivers/base/regmap/regcache.o: In function `regmap_debugfs_exit':
	...

Make the debugfs stubs static inline to fix this.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
 drivers/base/regmap/internal.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/base/regmap/internal.h b/drivers/base/regmap/internal.h
index 5ab3fef..b4acd94 100644
--- a/drivers/base/regmap/internal.h
+++ b/drivers/base/regmap/internal.h
@@ -58,9 +58,9 @@ extern void regmap_debugfs_initcall(void);
 extern void regmap_debugfs_init(struct regmap *map);
 extern void regmap_debugfs_exit(struct regmap *map);
 #else
-void regmap_debugfs_initcall(void) { }
-void regmap_debugfs_init(struct regmap *map) { }
-void regmap_debugfs_exit(struct regmap *map) { }
+static inline void regmap_debugfs_initcall(void) { }
+static inline void regmap_debugfs_init(struct regmap *map) { }
+static inline void regmap_debugfs_exit(struct regmap *map) { }
 #endif
 
 #endif
-- 
1.7.2.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-09-05 19:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-05 19:29 [PATCH] regmap: Fix regmap compilation with CONFIG_DEBUGFS=n Lars-Peter Clausen
2011-09-05 19:42 ` Mark Brown
2011-09-05 19:53   ` Lars-Peter Clausen
2011-09-05 19:55     ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox