]> Gentwo Git Trees - linux/.git/commit
mmc: pxamci: Simplify pxamci_probe() error handling using devm APIs
authorRakuram Eswaran <rakuram.e96@gmail.com>
Thu, 23 Oct 2025 14:54:32 +0000 (20:24 +0530)
committerUlf Hansson <ulf.hansson@linaro.org>
Tue, 11 Nov 2025 16:34:28 +0000 (17:34 +0100)
commit9e805625218b70d865fcee2105dbf835d473c074
tree6deb19974e0470752a53458569f013e339e4ffe5
parenta28352cf2d2f8380e7aca8cb61682396dca7a991
mmc: pxamci: Simplify pxamci_probe() error handling using devm APIs

This patch refactors pxamci_probe() to use devm-managed resource
allocation (e.g. devm_dma_request_chan) and dev_err_probe() for
improved readability and automatic cleanup on probe failure.

It also removes redundant NULL assignments and manual resource release
logic from pxamci_probe(), and eliminates the corresponding release
calls from pxamci_remove().

Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/r/202510041841.pRlunIfl-lkp@intel.com/
Fixes: 58c40f3faf742c ("mmc: pxamci: Use devm_mmc_alloc_host() helper")
Suggested-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>
Reviewed-by: Khalid Aziz <khalid@kernel.org>
Acked-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Cc: stable@vger.kernel.org
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/pxamci.c