[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1334100546-2534-1-git-send-email-festevam@gmail.com>
Date: Tue, 10 Apr 2012 20:29:06 -0300
From: Fabio Estevam <festevam@...il.com>
To: linux-kernel@...r.kernel.org
Cc: broonie@...nsource.wolfsonmicro.com, gregkh@...uxfoundation.org,
Fabio Estevam <festevam@...il.com>,
Fabio Estevam <fabio.estevam@...escale.com>
Subject: [PATCH] regmap: Fix build by removing extra parameter from regmap_debugfs_init()
commit b4eb511 (Merge branches 'regmap-mmio', 'regmap-naming' and 'regmap-linus' into regmap-next)
added an extra paramter to the prototype of regmap_debugfs_init() in the case of !CONFIG_DEBUG_FS.
Remove this extra parameter so that the driver can build again when !CONFIG_DEBUG_FS.
Signed-off-by: Fabio Estevam <fabio.estevam@...escale.com>
---
This applies against linux-next
drivers/base/regmap/internal.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/base/regmap/internal.h b/drivers/base/regmap/internal.h
index 32c2947..e46c279 100644
--- a/drivers/base/regmap/internal.h
+++ b/drivers/base/regmap/internal.h
@@ -112,7 +112,7 @@ extern void regmap_debugfs_init(struct regmap *map);
extern void regmap_debugfs_exit(struct regmap *map);
#else
static inline void regmap_debugfs_initcall(void) { }
-static inline void regmap_debugfs_init(struct regmap *map, const char *name) { }
+static inline void regmap_debugfs_init(struct regmap *map) { }
static inline void regmap_debugfs_exit(struct regmap *map) { }
#endif
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists