power: supply: samsung-sdi-battery: Constify struct power_supply_vbat_ri_table
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sun, 23 Jun 2024 06:45:33 +0000 (08:45 +0200)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Wed, 26 Jun 2024 15:32:00 +0000 (17:32 +0200)
'struct power_supply_vbat_ri_table' are not modified in this driver.

Constifying these structures moves some data to a read-only section, so
increase overall security.

In order to do it, some code also needs to be adjusted to this new const
qualifier.

On a x86_64, with allmodconfig:
Before:
======
$ size drivers/power/supply/samsung-sdi-battery.o
   text    data     bss     dec     hex filename
    955    7664       0    8619    21ab drivers/power/supply/samsung-sdi-battery.o

After:
=====
$ size drivers/power/supply/samsung-sdi-battery.o
   text    data     bss     dec     hex filename
   4055    4584       0    8639    21bf drivers/power/supply/samsung-sdi-battery.o

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/d01818abd880bf435d1106a9a6cc11a7a8a3e661.1719125040.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/power_supply_core.c
drivers/power/supply/samsung-sdi-battery.c
include/linux/power_supply.h

index fefe938c93424fc61fa5f8d9b26456e38bc8d430..022d0e4bf621ce435c693b72a4dbeb413d5b6ee3 100644 (file)
@@ -1024,7 +1024,7 @@ EXPORT_SYMBOL_GPL(power_supply_temp2resist_simple);
 int power_supply_vbat2ri(struct power_supply_battery_info *info,
                         int vbat_uv, bool charging)
 {
-       struct power_supply_vbat_ri_table *vbat2ri;
+       const struct power_supply_vbat_ri_table *vbat2ri;
        int table_len;
        int i, high, low;
 
index b33daab798b98a93260f94c20a1608ad0cabf54f..725fbe09379e44990b91615f72693ffb99f3f6cf 100644 (file)
@@ -25,7 +25,7 @@ struct samsung_sdi_battery {
  * tables apply depending on whether we are charging or not.
  */
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb_l1m7flu[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb_l1m7flu[] = {
        { .vbat_uv = 4240000, .ri_uohm = 160000 },
        { .vbat_uv = 4210000, .ri_uohm = 179000 },
        { .vbat_uv = 4180000, .ri_uohm = 183000 },
@@ -53,7 +53,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb_l1m7flu
        { .vbat_uv = 3300000, .ri_uohm = 339000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb_l1m7flu[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb_l1m7flu[] = {
        { .vbat_uv = 4302000, .ri_uohm = 230000 },
        { .vbat_uv = 4276000, .ri_uohm = 345000 },
        { .vbat_uv = 4227000, .ri_uohm = 345000 },
@@ -73,7 +73,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb_l1m7flu[]
        { .vbat_uv = 3590000, .ri_uohm = 164000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb425161la[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb425161la[] = {
        { .vbat_uv = 4240000, .ri_uohm = 160000 },
        { .vbat_uv = 4210000, .ri_uohm = 179000 },
        { .vbat_uv = 4180000, .ri_uohm = 183000 },
@@ -105,7 +105,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb425161la
        { .vbat_uv = 3300000, .ri_uohm = 339000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb425161la[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb425161la[] = {
        { .vbat_uv = 4345000, .ri_uohm = 230000 },
        { .vbat_uv = 4329000, .ri_uohm = 238000 },
        { .vbat_uv = 4314000, .ri_uohm = 225000 },
@@ -182,7 +182,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb425161la[]
        { .vbat_uv = 3590000, .ri_uohm = 164000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb425161lu[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb425161lu[] = {
        { .vbat_uv = 4240000, .ri_uohm = 160000 },
        { .vbat_uv = 4210000, .ri_uohm = 179000 },
        { .vbat_uv = 4180000, .ri_uohm = 183000 },
@@ -214,7 +214,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb425161lu
        { .vbat_uv = 3300000, .ri_uohm = 339000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb425161lu[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb425161lu[] = {
        { .vbat_uv = 4346000, .ri_uohm = 293000 },
        { .vbat_uv = 4336000, .ri_uohm = 290000 },
        { .vbat_uv = 4315000, .ri_uohm = 274000 },
@@ -244,7 +244,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb425161lu[]
        { .vbat_uv = 3590000, .ri_uohm = 164000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb485159lu[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb485159lu[] = {
        { .vbat_uv = 4240000, .ri_uohm = 160000 },
        { .vbat_uv = 4210000, .ri_uohm = 179000 },
        { .vbat_uv = 4180000, .ri_uohm = 183000 },
@@ -271,7 +271,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb485159lu
        { .vbat_uv = 3300000, .ri_uohm = 339000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb485159lu[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb485159lu[] = {
        { .vbat_uv = 4302000, .ri_uohm = 200000 },
        { .vbat_uv = 4258000, .ri_uohm = 206000 },
        { .vbat_uv = 4200000, .ri_uohm = 231000 },
@@ -291,7 +291,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb485159lu[]
        { .vbat_uv = 3590000, .ri_uohm = 164000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb535151vu[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb535151vu[] = {
        { .vbat_uv = 4071000, .ri_uohm = 158000 },
        { .vbat_uv = 4019000, .ri_uohm = 187000 },
        { .vbat_uv = 3951000, .ri_uohm = 191000 },
@@ -311,7 +311,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb535151vu
        { .vbat_uv = 3280000, .ri_uohm = 250000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb535151vu[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb535151vu[] = {
        { .vbat_uv = 4190000, .ri_uohm = 214000 },
        { .vbat_uv = 4159000, .ri_uohm = 252000 },
        { .vbat_uv = 4121000, .ri_uohm = 245000 },
@@ -331,7 +331,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb535151vu[]
        { .vbat_uv = 3510000, .ri_uohm = 228000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb585157lu[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb585157lu[] = {
        { .vbat_uv = 4194000, .ri_uohm = 121000 },
        { .vbat_uv = 4169000, .ri_uohm = 188000 },
        { .vbat_uv = 4136000, .ri_uohm = 173000 },
@@ -401,7 +401,7 @@ static struct power_supply_vbat_ri_table samsung_vbat2res_discharging_eb585157lu
        { .vbat_uv = 3161000, .ri_uohm = 452000 },
 };
 
-static struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb585157lu[] = {
+static const struct power_supply_vbat_ri_table samsung_vbat2res_charging_eb585157lu[] = {
        { .vbat_uv = 4360000, .ri_uohm = 128000 },
        { .vbat_uv = 4325000, .ri_uohm = 130000 },
        { .vbat_uv = 4316000, .ri_uohm = 148000 },
index 65082ef75692a948d61501eb2baeaa0fdb28390d..5061eeecf62ef014b0d176c3d015b164a95b535a 100644 (file)
@@ -755,9 +755,9 @@ struct power_supply_battery_info {
        int ocv_table_size[POWER_SUPPLY_OCV_TEMP_MAX];
        struct power_supply_resistance_temp_table *resist_table;
        int resist_table_size;
-       struct power_supply_vbat_ri_table *vbat2ri_discharging;
+       const struct power_supply_vbat_ri_table *vbat2ri_discharging;
        int vbat2ri_discharging_size;
-       struct power_supply_vbat_ri_table *vbat2ri_charging;
+       const struct power_supply_vbat_ri_table *vbat2ri_charging;
        int vbat2ri_charging_size;
        int bti_resistance_ohm;
        int bti_resistance_tolerance;