FROMLIST: mmc: sdhci: Do not allow tuning procedure to be interrupted
authorChristopher Freeman <cfreeman@nvidia.com>
Tue, 16 Aug 2016 02:37:12 +0000 (10:37 +0800)
committerHuang, Tao <huangtao@rock-chips.com>
Thu, 18 Aug 2016 10:22:00 +0000 (18:22 +0800)
commit5a4b726bf24238cb6936c73cb015dd2a981c0e70
tree6b0f7f92f78547d1a474477f98b84ae8f9f25d3d
parent5dc806cc889ffa876e7a6cea2787acb3bc02240f
FROMLIST: mmc: sdhci: Do not allow tuning procedure to be interrupted

wait_event_interruptible_timeout() will return early if the blocked
process receives a signal, causing the driver to abort the tuning
procedure and possibly leaving the controller in a bad state.  Since the
tuning command is expected to complete quickly (<50ms) and we've set a
timeout, use wait_event_timeout() instead.

Change-Id: Ibd1c5e8076c5fde4b4e9c4ebb0a2733c8d2d4eda
Signed-off-by: Christopher Freeman <cfreeman@nvidia.com>
Tested-by: Robert Foss <robert.foss@collabora.com>
Signed-off-by: Robert Foss <robert.foss@collabora.com>
Reviewed-by: Benson Leung <bleung@chromium.org>
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
drivers/mmc/host/sdhci.c