提交 263d21cd 编写于 作者: P Philippe Schenker 提交者: Jonathan Cameron

iio: stmpe-adc: Reinit completion struct on begin conversion

In some cases, the wait_completion got interrupted. This caused the
error-handling to mutex_unlock the function. The before turned on
interrupt then got called anyway. In the ISR then completion() was
called causing wrong adc-values returned in a following adc-readout.

Reinitialise completion struct to make sure the counter is zero
when beginning a new adc-conversion.
Signed-off-by: NPhilippe Schenker <philippe.schenker@toradex.com>
Signed-off-by: NJonathan Cameron <Jonathan.Cameron@huawei.com>
上级 2abd2937
...@@ -65,6 +65,8 @@ static int stmpe_read_voltage(struct stmpe_adc *info, ...@@ -65,6 +65,8 @@ static int stmpe_read_voltage(struct stmpe_adc *info,
mutex_lock(&info->lock); mutex_lock(&info->lock);
reinit_completion(&info->completion);
info->channel = (u8)chan->channel; info->channel = (u8)chan->channel;
if (info->channel > STMPE_ADC_LAST_NR) { if (info->channel > STMPE_ADC_LAST_NR) {
...@@ -103,6 +105,8 @@ static int stmpe_read_temp(struct stmpe_adc *info, ...@@ -103,6 +105,8 @@ static int stmpe_read_temp(struct stmpe_adc *info,
mutex_lock(&info->lock); mutex_lock(&info->lock);
reinit_completion(&info->completion);
info->channel = (u8)chan->channel; info->channel = (u8)chan->channel;
if (info->channel != STMPE_TEMP_CHANNEL) { if (info->channel != STMPE_TEMP_CHANNEL) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册