aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <[email protected]>2020-07-24 09:40:26 +0200
committerKrzysztof Kozlowski <[email protected]>2020-07-24 16:18:32 +0200
commita6ca67a838826ebabe9f1c1434140459928ee5b5 (patch)
tree02302be1b93a8ebd02ba5fe7d30056f92c875b0e
parent96424aa976bf8254ced65812e3bd081a7e25caa2 (diff)
memory: brcmstb_dpfe: Constify the contents of string
The string itself can be made const for safety. Signed-off-by: Krzysztof Kozlowski <[email protected]> Acked-by: Florian Fainelli <[email protected]> Acked-by: Markus Mayer <[email protected]>
-rw-r--r--drivers/memory/brcmstb_dpfe.c2
1 files changed, 1 insertions, 1 deletions
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",
};