Re: [PATCH 5/6] ASoC: samsung: spdif: Drop redundant probe error messages
From: Cezary Rojewski
Date: Tue Aug 11 2026 - 09:17:41 EST
On 8/11/2026 11:05 AM, phucduc.bui@xxxxxxxxx wrote:
From: bui duc phuc <phucduc.bui@xxxxxxxxx>
Remove the probe error messages to avoid duplicate error reporting,
since the error is already reported by the called functions.
...
@@ -415,19 +415,15 @@ static int spdif_probe(struct platform_device *pdev)
ret = samsung_asoc_dma_platform_register(&pdev->dev, filter,
NULL, NULL, NULL);
- if (ret) {
- dev_err(&pdev->dev, "failed to register DMA: %d\n", ret);
Which function reports the dmaengine registration failure?
+ if (ret)
goto err2;
- }