|
@@ -269,8 +269,6 @@ static irqreturn_t as3935_interrupt_handler(int irq, void *private)
|
|
|
|
|
|
static void calibrate_as3935(struct as3935_state *st)
|
|
|
{
|
|
|
- mutex_lock(&st->lock);
|
|
|
-
|
|
|
/* mask disturber interrupt bit */
|
|
|
as3935_write(st, AS3935_INT, BIT(5));
|
|
|
|
|
@@ -280,8 +278,6 @@ static void calibrate_as3935(struct as3935_state *st)
|
|
|
|
|
|
mdelay(2);
|
|
|
as3935_write(st, AS3935_TUNE_CAP, (st->tune_cap / TUNE_CAP_DIV));
|
|
|
-
|
|
|
- mutex_unlock(&st->lock);
|
|
|
}
|
|
|
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
@@ -318,6 +314,8 @@ static int as3935_resume(struct device *dev)
|
|
|
val &= ~AS3935_AFE_PWR_BIT;
|
|
|
ret = as3935_write(st, AS3935_AFE_GAIN, val);
|
|
|
|
|
|
+ calibrate_as3935(st);
|
|
|
+
|
|
|
err_resume:
|
|
|
mutex_unlock(&st->lock);
|
|
|
|