Commit ee9a71ad authored by Tang Bin's avatar Tang Bin Committed by Krzysztof Kozlowski
Browse files

ARM: samsung: Omit superfluous error message in s3c_adc_probe()



In the function s3c_adc_probe(), when get irq failed, the function
platform_get_irq() logs an error message, so remove redundant
message here.

Signed-off-by: default avatarShengju Zhang <zhangshengju@cmss.chinamobile.com>
Signed-off-by: default avatarTang Bin <tangbin@cmss.chinamobile.com>
Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
parent 778627c7
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -354,10 +354,8 @@ static int s3c_adc_probe(struct platform_device *pdev)
	}

	adc->irq = platform_get_irq(pdev, 1);
	if (adc->irq <= 0) {
		dev_err(dev, "failed to get adc irq\n");
	if (adc->irq <= 0)
		return -ENOENT;
	}

	ret = devm_request_irq(dev, adc->irq, s3c_adc_irq, 0, dev_name(dev),
				adc);