]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer()
authorMinjie Du <duminjie@vivo.com>
Tue, 25 Jul 2023 03:06:25 +0000 (11:06 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Sep 2023 07:47:52 +0000 (09:47 +0200)
commit73adcfe192d3dc97b79f6bec26cd2f82490bd693
tree2ba25d0b9c38e0e602dc381c90151d2cefed1b06
parent20c80f8cfbc5d42b27163a0d18e573798a294971
ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer()

[ Upstream commit 4139f992c49356391fb086c0c8ce51f66c26d623 ]

It is possible for dma_request_chan() to return EPROBE_DEFER, which
means acdev->host->dev is not ready yet. At this point dev_err() will
have no output. Use dev_err_probe() instead.

Signed-off-by: Minjie Du <duminjie@vivo.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/ata/pata_arasan_cf.c