Message ID | 20200724074038.5597-18-krzk@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | *memory: Cleanup, improve and compile test memory drivers | expand |
On Fri, Jul 24, 2020 at 09:40:26AM +0200, Krzysztof Kozlowski wrote: > The string itself can be made const for safety. > > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> > Acked-by: Florian Fainelli <f.fainelli@gmail.com> > Acked-by: Markus Mayer <mmayer@broadcom.com> > --- > drivers/memory/brcmstb_dpfe.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied (and part of pull request to arm-soc). Best regards, Krzysztof
diff --git a/drivers/memory/brcmstb_dpfe.c b/drivers/memory/brcmstb_dpfe.c index 82b415be18d1..5942380f343b 100644 --- a/drivers/memory/brcmstb_dpfe.c +++ b/drivers/memory/brcmstb_dpfe.c @@ -188,7 +188,7 @@ struct brcmstb_dpfe_priv { struct mutex lock; }; -static const char *error_text[] = { +static const char * const error_text[] = { "Success", "Header code incorrect", "Unknown command or argument", "Incorrect checksum", "Malformed command", "Timed out", };