[PATCH] mfd: palmas: Constify strings with regulator names

Krzysztof Kozlowski posted 1 patch 2 months, 3 weeks ago
include/linux/mfd/palmas.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] mfd: palmas: Constify strings with regulator names
Posted by Krzysztof Kozlowski 2 months, 3 weeks ago
The names of regulators are static const strings, so pointers can be made
as pointers to const for code safety.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 include/linux/mfd/palmas.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/mfd/palmas.h b/include/linux/mfd/palmas.h
index eda1ffd99c1a..dabcc0dea802 100644
--- a/include/linux/mfd/palmas.h
+++ b/include/linux/mfd/palmas.h
@@ -98,8 +98,8 @@ struct palmas_sleep_requestor_info {
 };
 
 struct palmas_regs_info {
-	char	*name;
-	char	*sname;
+	const char	*name;
+	const char	*sname;
 	u8	vsel_addr;
 	u8	ctrl_addr;
 	u8	tstep_addr;
-- 
2.43.0
Re: (subset) [PATCH] mfd: palmas: Constify strings with regulator names
Posted by Lee Jones 1 month, 4 weeks ago
On Mon, 09 Sep 2024 15:49:41 +0200, Krzysztof Kozlowski wrote:
> The names of regulators are static const strings, so pointers can be made
> as pointers to const for code safety.
> 
> 

Applied, thanks!

[1/1] mfd: palmas: Constify strings with regulator names
      commit: 1b0ed9d381dd77a566efa846f7ba5df73efbb956

--
Lee Jones [李琼斯]