Skip to content

Commit

Permalink
ASoC: cs53l30: Constify cs53l30_mclk_coeffs and cs53l30_mclkx_coeffs …
Browse files Browse the repository at this point in the history
…tables

Signed-off-by: Axel Lin <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
  • Loading branch information
AxelLin authored and broonie committed Aug 8, 2016
1 parent 29b4817 commit 3597fce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/soc/codecs/cs53l30.c
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ struct cs53l30_mclk_div {
u8 mclk_int_scale;
};

static struct cs53l30_mclk_div cs53l30_mclk_coeffs[] = {
static const struct cs53l30_mclk_div cs53l30_mclk_coeffs[] = {
/* NOTE: Enable MCLK_INT_SCALE to save power. */

/* MCLK, Sample Rate, asp_rate, internal_fs_ratio, mclk_int_scale */
Expand Down Expand Up @@ -511,7 +511,7 @@ struct cs53l30_mclkx_div {
u8 mclkdiv;
};

static struct cs53l30_mclkx_div cs53l30_mclkx_coeffs[] = {
static const struct cs53l30_mclkx_div cs53l30_mclkx_coeffs[] = {
{5644800, 1, CS53L30_MCLK_DIV_BY_1},
{6000000, 1, CS53L30_MCLK_DIV_BY_1},
{6144000, 1, CS53L30_MCLK_DIV_BY_1},
Expand Down

0 comments on commit 3597fce

Please sign in to comment.