regulator: palmas: Constify palmas_smps_ramp_delay array
authorAxel Lin <axel.lin@ingics.com>
Fri, 1 Mar 2019 14:20:16 +0000 (22:20 +0800)
committerMark Brown <broonie@kernel.org>
Mon, 4 Mar 2019 00:00:47 +0000 (00:00 +0000)
The palmas_smps_ramp_delay array should never modify, make it const.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/palmas-regulator.c

index c2cc392a27d4075ffc40dc123a78775d0e034a8f..7fb9e8dd834e8118611eb6de5304e9251324f1f7 100644 (file)
@@ -382,7 +382,7 @@ static struct palmas_sleep_requestor_info tps65917_sleep_req_info[] = {
        EXTERNAL_REQUESTOR_TPS65917(LDO5, 2, 4),
 };
 
-static unsigned int palmas_smps_ramp_delay[4] = {0, 10000, 5000, 2500};
+static const unsigned int palmas_smps_ramp_delay[4] = {0, 10000, 5000, 2500};
 
 #define SMPS_CTRL_MODE_OFF             0x00
 #define SMPS_CTRL_MODE_ON              0x01