summaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
authorMario Six <mario.six@gdsys.cc>2018-10-04 10:00:42 +0300
committerSimon Glass <sjg@chromium.org>2018-11-14 20:16:27 +0300
commit9b076095636b7def91ed6fd3f94383155057e962 (patch)
tree818845a7a5b729423b8f673a758f28281cca170b /drivers/core
parent604b6696ed147bbd0cd9c7b2f319e7dd5096ca14 (diff)
downloadu-boot-9b076095636b7def91ed6fd3f94383155057e962.tar.xz
regmap: Add documentation
Document the regmap_alloc() function. Reviewed-by: Anatolij Gustschin <agust@denx.de> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Mario Six <mario.six@gdsys.cc>
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/regmap.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/core/regmap.c b/drivers/core/regmap.c
index 8e5c3bcf61..77f6f520a0 100644
--- a/drivers/core/regmap.c
+++ b/drivers/core/regmap.c
@@ -17,6 +17,12 @@
DECLARE_GLOBAL_DATA_PTR;
+/**
+ * regmap_alloc() - Allocate a regmap with a given number of ranges.
+ *
+ * @count: Number of ranges to be allocated for the regmap.
+ * Return: A pointer to the newly allocated regmap, or NULL on error.
+ */
static struct regmap *regmap_alloc(int count)
{
struct regmap *map;