ASoC: wm5100: Fix mismerge of IRQ frees
We only want them at the device level, not at the CODEC level. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
05d448e2c9
commit
e8770dd878
|
@ -2525,8 +2525,6 @@ static int wm5100_probe(struct snd_soc_codec *codec)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_gpio:
|
err_gpio:
|
||||||
if (i2c->irq)
|
|
||||||
free_irq(i2c->irq, wm5100);
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -2539,8 +2537,6 @@ static int wm5100_remove(struct snd_soc_codec *codec)
|
||||||
if (wm5100->pdata.hp_pol) {
|
if (wm5100->pdata.hp_pol) {
|
||||||
gpio_free(wm5100->pdata.hp_pol);
|
gpio_free(wm5100->pdata.hp_pol);
|
||||||
}
|
}
|
||||||
if (i2c->irq)
|
|
||||||
free_irq(i2c->irq, wm5100);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue