From: Kuninori Morimoto Date: Tue, 10 Mar 2015 01:25:36 +0000 (+0000) Subject: ASoC: rsnd: add regmap_config::name for debugfs X-Git-Tag: v4.1-rc1~117^2~1^2~3^4~15 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=530b7b4a52365ce2a250669b87e964a843bdbedb;p=karo-tx-linux.git ASoC: rsnd: add regmap_config::name for debugfs Renesas sound driver needs SSI/SRC/DVC regmaps, but it didn't have regmap_config::name for devm_regmap_init_mmio(). Thus, debugfs initialization code tried to use same driver name many times, and failed. This patch adds eacy own name for regmap_config::name Signed-off-by: Kuninori Morimoto Signed-off-by: Mark Brown --- diff --git a/sound/soc/sh/rcar/gen.c b/sound/soc/sh/rcar/gen.c index 0273724a2668..a17a504d93b5 100644 --- a/sound/soc/sh/rcar/gen.c +++ b/sound/soc/sh/rcar/gen.c @@ -150,6 +150,7 @@ static int _rsnd_gen_regmap_init(struct rsnd_priv *priv, regc.reg_bits = 32; regc.val_bits = 32; regc.reg_stride = 4; + regc.name = name; res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name); if (!res)