Browse Source

regulator: pv88060: Fix irq leak

Use devm_request_threaded_irq to ensure the irq is freed when unload the
module.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Axel Lin 9 years ago
parent
commit
88467943b3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/regulator/pv88060-regulator.c

+ 1 - 1
drivers/regulator/pv88060-regulator.c

@@ -365,7 +365,7 @@ static int pv88060_i2c_probe(struct i2c_client *i2c,
 			return ret;
 			return ret;
 		}
 		}
 
 
-		ret = request_threaded_irq(i2c->irq, NULL,
+		ret = devm_request_threaded_irq(&i2c->dev, i2c->irq, NULL,
 					pv88060_irq_handler,
 					pv88060_irq_handler,
 					IRQF_TRIGGER_LOW|IRQF_ONESHOT,
 					IRQF_TRIGGER_LOW|IRQF_ONESHOT,
 					"pv88060", chip);
 					"pv88060", chip);