From f229a32828fee1ac9508f3c19f49ea7584c7c446 Mon Sep 17 00:00:00 2001 From: Samuel Holland Date: Tue, 30 Jul 2024 21:58:43 -0700 Subject: [PATCH] lib: utils/regmap: Fix typo in comment Balance the quotation marks; double quotes are idiomatic here. Signed-off-by: Samuel Holland Reviewed-by: Andrew Jones Reviewed-by: Anup Patel --- include/sbi_utils/regmap/fdt_regmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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