Commit 5b4e64be authored by Hans de Goede's avatar Hans de Goede Committed by Chanwoo Choi

extcon: axp288: Constify the axp288_pwr_up_down_info array

Make the axp288_pwr_up_down_info array const char * const, this leads
to the following section size changes:

.text     0x674 -> 0x664
.data     0x148 -> 0x0f0
.rodata   0x0b4 -> 0x114
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent 7928b2cb
...@@ -106,7 +106,7 @@ struct axp288_extcon_info { ...@@ -106,7 +106,7 @@ struct axp288_extcon_info {
}; };
/* Power up/down reason string array */ /* Power up/down reason string array */
static char *axp288_pwr_up_down_info[] = { static const char * const axp288_pwr_up_down_info[] = {
"Last wake caused by user pressing the power button", "Last wake caused by user pressing the power button",
"Last wake caused by a charger insertion", "Last wake caused by a charger insertion",
"Last wake caused by a battery insertion", "Last wake caused by a battery insertion",
...@@ -124,7 +124,7 @@ static char *axp288_pwr_up_down_info[] = { ...@@ -124,7 +124,7 @@ static char *axp288_pwr_up_down_info[] = {
*/ */
static void axp288_extcon_log_rsi(struct axp288_extcon_info *info) static void axp288_extcon_log_rsi(struct axp288_extcon_info *info)
{ {
char **rsi; const char * const *rsi;
unsigned int val, i, clear_mask = 0; unsigned int val, i, clear_mask = 0;
int ret; int ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment