Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03019759 authored by Axel Lin's avatar Axel Lin Committed by MyungJoo Ham
Browse files

extcon: adc-jack: Fix checking return value of request_any_context_irq



On failure, request_any_context_irq() returns a negative value.
On success, it returns either IRQC_IS_HARDIRQ or IRQC_IS_NESTED.

Also ensure adc_jack_probe() return 0 on success.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent 5cd3c277
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -161,13 +161,12 @@ static int __devinit adc_jack_probe(struct platform_device *pdev)
	err = request_any_context_irq(data->irq, adc_jack_irq_thread,
			pdata->irq_flags, pdata->name, data);

	if (err) {
	if (err < 0) {
		dev_err(&pdev->dev, "error: irq %d\n", data->irq);
		err = -EINVAL;
		goto err_irq;
	}

	goto out;
	return 0;

err_irq:
	extcon_dev_unregister(&data->edev);