Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dmaengine: mv_xor_v2: Fix an error code.

If the probe is deferred, -EPROBE_DEFER should be returned, not
+EPROBE_DEFER.

Fixes: 3cd2c313f1d6 ("dmaengine: mv_xor_v2: Fix clock resource by adding a register clock")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/201170dff832a3c496d125772e10070cd834ebf2.1679814350.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Christophe JAILLET and committed by
Vinod Koul
827026ae fbe05149

+1 -1
+1 -1
drivers/dma/mv_xor_v2.c
··· 752 752 753 753 xor_dev->clk = devm_clk_get(&pdev->dev, NULL); 754 754 if (PTR_ERR(xor_dev->clk) == -EPROBE_DEFER) { 755 - ret = EPROBE_DEFER; 755 + ret = -EPROBE_DEFER; 756 756 goto disable_reg_clk; 757 757 } 758 758 if (!IS_ERR(xor_dev->clk)) {