23 Aug
2023
23 Aug
'23
1:50 a.m.
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 --- sound/soc/sh/rcar/adg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sound/soc/sh/rcar/adg.c b/sound/soc/sh/rcar/adg.c index 5528351c7535..fbe209b2430d 100644 --- a/sound/soc/sh/rcar/adg.c +++ b/sound/soc/sh/rcar/adg.c @@ -503,8 +503,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
--
2.25.1