diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index a54403b02f22..d5a845bd5564 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -2674,6 +2674,13 @@ void spi_unregister_controller(struct spi_controller *ctlr) device_del(&ctlr->dev); + /* Release the last reference on the controller if its driver + * has not yet been converted to devm_spi_alloc_master/slave(). + */ + if (!devres_find(ctlr->dev.parent, devm_spi_release_controller, + devm_spi_match_controller, ctlr)) + put_device(&ctlr->dev); + /* free bus id */ mutex_lock(&board_lock); if (found == ctlr) @@ -2682,13 +2689,6 @@ void spi_unregister_controller(struct spi_controller *ctlr) if (IS_ENABLED(CONFIG_SPI_DYNAMIC)) mutex_unlock(&ctlr->add_lock); - - /* Release the last reference on the controller if its driver - * has not yet been converted to devm_spi_alloc_master/slave(). - */ - if (!devres_find(ctlr->dev.parent, devm_spi_release_controller, - devm_spi_match_controller, ctlr)) - put_device(&ctlr->dev); } EXPORT_SYMBOL_GPL(spi_unregister_controller);