summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Holland <[email protected]>2024-07-30 21:58:43 -0700
committerAnup Patel <[email protected]>2024-08-24 13:02:23 +0530
commitf229a32828fee1ac9508f3c19f49ea7584c7c446 (patch)
tree0eb759d5aff35cc394c2f736d0f7da2af0638fc3
parentbcb81f0cbe55fee86bd1d123d5fefc4848af4f8e (diff)
lib: utils/regmap: Fix typo in comment
Balance the quotation marks; double quotes are idiomatic here. Signed-off-by: Samuel Holland <[email protected]> Reviewed-by: Andrew Jones <[email protected]> Reviewed-by: Anup Patel <[email protected]>
-rw-r--r--include/sbi_utils/regmap/fdt_regmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sbi_utils/regmap/fdt_regmap.h b/include/sbi_utils/regmap/fdt_regmap.h
index 0672162c..403dd7d4 100644
--- a/include/sbi_utils/regmap/fdt_regmap.h
+++ b/include/sbi_utils/regmap/fdt_regmap.h
@@ -25,7 +25,7 @@ struct fdt_regmap {
int fdt_regmap_get_by_phandle(void *fdt, u32 phandle,
struct regmap **out_rmap);
-/** Get regmap instance based on "regmap' property of the specified DT node */
+/** Get regmap instance based on "regmap" property of the specified DT node */
int fdt_regmap_get(void *fdt, int nodeoff, struct regmap **out_rmap);
#endif