diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2023-08-22 23:50:48 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-08-23 13:53:27 +0100 |
commit | 80d4984f38631b1157dd51214ccd3d2fc6d56fbb (patch) | |
tree | 663cdcd56ef7a6c8cb1976bd49da188fc95b13dd /sound/soc/sh | |
parent | d059cd40aea6deae716bc6588f24e7b6b421f822 (diff) |
ASoC: rsnd: tidyup brga/brgb default value
default value for brga/brgb should be 0xff instead of 0x2.
This patch tidyup it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87jztmzlew.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sh')
-rw-r--r-- | sound/soc/sh/rcar/adg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/sh/rcar/adg.c b/sound/soc/sh/rcar/adg.c index 919339b75a25..4acfb92e44f3 100644 --- a/sound/soc/sh/rcar/adg.c +++ b/sound/soc/sh/rcar/adg.c @@ -502,8 +502,8 @@ static int rsnd_adg_get_clkout(struct rsnd_priv *priv) }; ckr = 0; - brga = 2; /* default 1/6 */ - brgb = 2; /* default 1/6 */ + brga = 0xff; /* default */ + brgb = 0xff; /* default */ /* * ADG supports BRRA/BRRB output only |