Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove duplicate 'const' declaration in percent_to_volt_charge[]

Affetcs many hosted targets; probably was a typo that was copy-pasted
everywhere else.

Change-Id: Ifbb31e7ff1fce4874fa0f3c108db59f152e2f927

+8 -8
+1 -1
firmware/target/hosted/agptek/powermgmt-agptek.c
··· 39 39 }; 40 40 41 41 /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ 42 - const unsigned short const percent_to_volt_charge[11] = 42 + const unsigned short percent_to_volt_charge[11] = 43 43 { 44 44 3485, 3780, 3836, 3857, 3890, 3930, 3986, 4062, 4158, 4185, 4196 45 45 };
+1 -1
firmware/target/hosted/aigo/powermgmt-erosq.c
··· 40 40 }; 41 41 42 42 /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ 43 - const unsigned short const percent_to_volt_charge[11] = 43 + const unsigned short percent_to_volt_charge[11] = 44 44 { 45 45 3485, 3780, 3836, 3857, 3890, 3930, 3986, 4062, 4158, 4185, 4196 46 46 };
+1 -1
firmware/target/hosted/fiio/powermgmt-fiio.c
··· 39 39 }; 40 40 41 41 /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ 42 - const unsigned short const percent_to_volt_charge[11] = 42 + const unsigned short percent_to_volt_charge[11] = 43 43 { 44 44 3485, 3780, 3836, 3857, 3890, 3930, 3986, 4062, 4158, 4185, 4196 45 45 };
+2 -2
firmware/target/hosted/samsungypr/ypr0/powermgmt-ypr0.c
··· 56 56 57 57 #if CONFIG_CHARGING 58 58 /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ 59 - const unsigned short const percent_to_volt_charge[11] = 59 + const unsigned short percent_to_volt_charge[11] = 60 60 { 61 61 3450, 3670, 3721, 3751, 3782, 3821, 3876, 3941, 4034, 4125, 4200 62 62 }; ··· 132 132 { 133 133 return tuner_on; 134 134 } 135 - #endif /* #if CONFIG_TUNER */ 135 + #endif /* #if CONFIG_TUNER */
+1 -1
firmware/target/hosted/samsungypr/ypr1/powermgmt-ypr1.c
··· 76 76 77 77 #if CONFIG_CHARGING 78 78 /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ 79 - const unsigned short const percent_to_volt_charge[11] = 79 + const unsigned short percent_to_volt_charge[11] = 80 80 { 81 81 3450, 3670, 3721, 3751, 3782, 3821, 3876, 3941, 4034, 4125, 4200 82 82 };
+1 -1
firmware/target/hosted/sonynwz/powermgmt-nwz.c
··· 39 39 }; 40 40 41 41 /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ 42 - const unsigned short const percent_to_volt_charge[11] = 42 + const unsigned short percent_to_volt_charge[11] = 43 43 { 44 44 3450, 3670, 3721, 3751, 3782, 3821, 3876, 3941, 4034, 4125, 4200 45 45 };
+1 -1
firmware/target/hosted/xduoo/powermgmt-xduoo.c
··· 39 39 }; 40 40 41 41 /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ 42 - const unsigned short const percent_to_volt_charge[11] = 42 + const unsigned short percent_to_volt_charge[11] = 43 43 { 44 44 3485, 3780, 3836, 3857, 3890, 3930, 3986, 4062, 4158, 4185, 4196 45 45 };