This is a note to let you know that I've just added the patch titled ASoC: codec: tlv320aic32x4: Fix regmap range config to the 3.13-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: asoc-codec-tlv320aic32x4-fix-regmap-range-config.patch and it can be found in the queue-3.13 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 6d0d5103bdc45242b8d02e4130fbe5a3ea9f668a Mon Sep 17 00:00:00 2001 From: Markus Pargmann <mpa@xxxxxxxxxxxxxx> Date: Sat, 11 Jan 2014 14:48:30 +0100 Subject: ASoC: codec: tlv320aic32x4: Fix regmap range config From: Markus Pargmann <mpa@xxxxxxxxxxxxxx> commit 6d0d5103bdc45242b8d02e4130fbe5a3ea9f668a upstream. This codec driver fails to probe because it has a higher regmap range_max value than max_register. This patch sets the range_max to the max_register value as described in the for struct regmap_range_cfg: "@range_max: Address of the highest register in virtual range." Fixes: 4d208ca429ad (ASoC: tlv320aic32x4: Convert to direct regmap API usage) Signed-off-by: Markus Pargmann <mpa@xxxxxxxxxxxxxx> Signed-off-by: Mark Brown <broonie@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- sound/soc/codecs/tlv320aic32x4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/sound/soc/codecs/tlv320aic32x4.c +++ b/sound/soc/codecs/tlv320aic32x4.c @@ -268,7 +268,7 @@ static const struct regmap_range_cfg aic .window_start = 0, .window_len = 128, .range_min = AIC32X4_PAGE1, - .range_max = AIC32X4_PAGE1 + 127, + .range_max = AIC32X4_RMICPGAVOL, }, }; Patches currently in stable-queue which might be from mpa@xxxxxxxxxxxxxx are queue-3.13/asoc-codec-tlv320aic32x4-fix-regmap-range-config.patch queue-3.13/asoc-tlv320aic32x4-fix-regmap-range_min.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html