ata: ahci: ceva: Updated code by using dev_err_probe()

Updated code with already prepared dev_err_probe(). It reduces code size
and simplifies EPROBE_DEFER handling.

Also, unify message format for similar error cases.

Signed-off-by: Piyush Mehta <piyush.mehta@xilinx.com>
Acked-by: Michal Simek <michal.simek@xilinx.com>
Link: https://lore.kernel.org/r/20210305091029.23378-1-piyush.mehta@xilinx.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
Piyush Mehta 2021-03-05 14:40:29 +05:30 committed by Jens Axboe
parent 234e6d2c18
commit fa4b42b2a9

View File

@ -206,11 +206,9 @@ static int ceva_ahci_probe(struct platform_device *pdev)
cevapriv->rst = devm_reset_control_get_optional_exclusive(&pdev->dev, cevapriv->rst = devm_reset_control_get_optional_exclusive(&pdev->dev,
NULL); NULL);
if (IS_ERR(cevapriv->rst)) { if (IS_ERR(cevapriv->rst))
if (PTR_ERR(cevapriv->rst) != -EPROBE_DEFER) dev_err_probe(&pdev->dev, PTR_ERR(cevapriv->rst),
dev_err(&pdev->dev, "failed to get reset: %ld\n", "failed to get reset\n");
PTR_ERR(cevapriv->rst));
}
hpriv = ahci_platform_get_resources(pdev, 0); hpriv = ahci_platform_get_resources(pdev, 0);
if (IS_ERR(hpriv)) if (IS_ERR(hpriv))