diff options
| -rw-r--r-- | audio/pcm_bluetooth.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/audio/pcm_bluetooth.c b/audio/pcm_bluetooth.c index e0264018..734eae7f 100644 --- a/audio/pcm_bluetooth.c +++ b/audio/pcm_bluetooth.c @@ -305,7 +305,8 @@ static int bluetooth_hsp_hw_params(snd_pcm_ioplug_t *io,  	SNDERR("%s (%d)", strerror(err), err); -	return -err; +	/* FIXME: We should not ignores errors on future. */ +	return 0;  }  static int bluetooth_a2dp_hw_params(snd_pcm_ioplug_t *io, | 
