mmc: core: Remove unnecessary check for the remove callback
For every bus_ops type the .remove callback always exist, thus there are no need to check the existence of it, before we decide to call it. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Tested-by: Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
Родитель
017d84bd45
Коммит
58a8a4a1a5
|
@ -2483,9 +2483,7 @@ void mmc_stop_host(struct mmc_host *host)
|
||||||
mmc_bus_get(host);
|
mmc_bus_get(host);
|
||||||
if (host->bus_ops && !host->bus_dead) {
|
if (host->bus_ops && !host->bus_dead) {
|
||||||
/* Calling bus_ops->remove() with a claimed host can deadlock */
|
/* Calling bus_ops->remove() with a claimed host can deadlock */
|
||||||
if (host->bus_ops->remove)
|
host->bus_ops->remove(host);
|
||||||
host->bus_ops->remove(host);
|
|
||||||
|
|
||||||
mmc_claim_host(host);
|
mmc_claim_host(host);
|
||||||
mmc_detach_bus(host);
|
mmc_detach_bus(host);
|
||||||
mmc_power_off(host);
|
mmc_power_off(host);
|
||||||
|
@ -2638,8 +2636,7 @@ int mmc_suspend_host(struct mmc_host *host)
|
||||||
* bus_ops->remove() with a claimed host can
|
* bus_ops->remove() with a claimed host can
|
||||||
* deadlock.)
|
* deadlock.)
|
||||||
*/
|
*/
|
||||||
if (host->bus_ops->remove)
|
host->bus_ops->remove(host);
|
||||||
host->bus_ops->remove(host);
|
|
||||||
mmc_claim_host(host);
|
mmc_claim_host(host);
|
||||||
mmc_detach_bus(host);
|
mmc_detach_bus(host);
|
||||||
mmc_power_off(host);
|
mmc_power_off(host);
|
||||||
|
@ -2722,9 +2719,7 @@ int mmc_pm_notify(struct notifier_block *notify_block,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* Calling bus_ops->remove() with a claimed host can deadlock */
|
/* Calling bus_ops->remove() with a claimed host can deadlock */
|
||||||
if (host->bus_ops->remove)
|
host->bus_ops->remove(host);
|
||||||
host->bus_ops->remove(host);
|
|
||||||
|
|
||||||
mmc_claim_host(host);
|
mmc_claim_host(host);
|
||||||
mmc_detach_bus(host);
|
mmc_detach_bus(host);
|
||||||
mmc_power_off(host);
|
mmc_power_off(host);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче