diff options
Diffstat (limited to 'sound/soc/codecs/tas2562.c')
| -rw-r--r-- | sound/soc/codecs/tas2562.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/sound/soc/codecs/tas2562.c b/sound/soc/codecs/tas2562.c index 729acd874c48..be52886a5edb 100644 --- a/sound/soc/codecs/tas2562.c +++ b/sound/soc/codecs/tas2562.c @@ -215,7 +215,8 @@ static int tas2562_set_bitwidth(struct tas2562_data *tas2562, int bitwidth)  		break;  	default: -		dev_info(tas2562->dev, "Not supported params format\n"); +		dev_info(tas2562->dev, "Unsupported bitwidth format\n"); +		return -EINVAL;  	}  	ret = snd_soc_component_update_bits(tas2562->component, @@ -251,7 +252,7 @@ static int tas2562_hw_params(struct snd_pcm_substream *substream,  	ret = tas2562_set_samplerate(tas2562, params_rate(params));  	if (ret) -		dev_err(tas2562->dev, "set bitwidth failed, %d\n", ret); +		dev_err(tas2562->dev, "set sample rate failed, %d\n", ret);  	return ret;  } |