]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
mmc: sdhci: Fix sdhci_runtime_pm_bus_on/off()
authorAdrian Hunter <adrian.hunter@intel.com>
Thu, 26 Nov 2015 12:00:50 +0000 (14:00 +0200)
committerSasha Levin <sasha.levin@oracle.com>
Mon, 1 Feb 2016 17:39:36 +0000 (12:39 -0500)
commita2da01ce927dd98cb8f1a8f2d2343d2f5827b988
treef6d53b41e296f8edf5dbca659dd0c3fd3d6ceebf
parentb0aed82cdc3204ef04bfb05cab8a7892ed8bd9db
mmc: sdhci: Fix sdhci_runtime_pm_bus_on/off()

[ Upstream commit 5c671c410c8704800f4f1673b6f572137e7e6ddd ]

sdhci has a legacy facility to prevent runtime suspend if the
bus power is on.  This is needed in cases where the power to
the card is dependent on the bus power.  It is controlled by
a pair of functions: sdhci_runtime_pm_bus_on() and
sdhci_runtime_pm_bus_off().  These functions use a boolean
variable 'bus_on' to ensure changes are always paired.
There is an additional check for 'runtime_suspended' which is
the problem.  In fact, its use is ill-conceived as the only
requirement for the logic is that 'on' and 'off' are paired,
which is actually broken by the check, for example if the bus
power is turned on during runtime resume.  So remove  the check.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: stable@vger.kernel.org # v3.11+
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
drivers/mmc/host/sdhci.c