Commit 66f2752f authored by Axel Lin's avatar Axel Lin Committed by Lee Jones

mfd: wm8994-regmap: Constify reg_default tables

These reg_default tables are not modified after initialized, so make them
const.
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Acked-by: default avatarCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent e6c7efa7
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "wm8994.h" #include "wm8994.h"
static struct reg_default wm1811_defaults[] = { static const struct reg_default wm1811_defaults[] = {
{ 0x0001, 0x0000 }, /* R1 - Power Management (1) */ { 0x0001, 0x0000 }, /* R1 - Power Management (1) */
{ 0x0002, 0x6000 }, /* R2 - Power Management (2) */ { 0x0002, 0x6000 }, /* R2 - Power Management (2) */
{ 0x0003, 0x0000 }, /* R3 - Power Management (3) */ { 0x0003, 0x0000 }, /* R3 - Power Management (3) */
...@@ -251,7 +251,7 @@ static struct reg_default wm1811_defaults[] = { ...@@ -251,7 +251,7 @@ static struct reg_default wm1811_defaults[] = {
{ 0x0748, 0x003F }, /* R1864 - IRQ Debounce */ { 0x0748, 0x003F }, /* R1864 - IRQ Debounce */
}; };
static struct reg_default wm8994_defaults[] = { static const struct reg_default wm8994_defaults[] = {
{ 0x0001, 0x0000 }, /* R1 - Power Management (1) */ { 0x0001, 0x0000 }, /* R1 - Power Management (1) */
{ 0x0002, 0x6000 }, /* R2 - Power Management (2) */ { 0x0002, 0x6000 }, /* R2 - Power Management (2) */
{ 0x0003, 0x0000 }, /* R3 - Power Management (3) */ { 0x0003, 0x0000 }, /* R3 - Power Management (3) */
...@@ -470,7 +470,7 @@ static struct reg_default wm8994_defaults[] = { ...@@ -470,7 +470,7 @@ static struct reg_default wm8994_defaults[] = {
{ 0x0748, 0x003F }, /* R1864 - IRQ Debounce */ { 0x0748, 0x003F }, /* R1864 - IRQ Debounce */
}; };
static struct reg_default wm8958_defaults[] = { static const struct reg_default wm8958_defaults[] = {
{ 0x0001, 0x0000 }, /* R1 - Power Management (1) */ { 0x0001, 0x0000 }, /* R1 - Power Management (1) */
{ 0x0002, 0x6000 }, /* R2 - Power Management (2) */ { 0x0002, 0x6000 }, /* R2 - Power Management (2) */
{ 0x0003, 0x0000 }, /* R3 - Power Management (3) */ { 0x0003, 0x0000 }, /* R3 - Power Management (3) */
......
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