summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Wallis <awallis@codeaurora.org>2017-03-28 15:55:28 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-12-25 14:23:42 +0100
commit54420c1ac4211cba7ac57e14a0971d4ad3105729 (patch)
tree74bd0a6b12eeb1da665c2cfd5b29796e33248469
parent55b6a5d080aaf42aad34a4866c27a185b91f7a26 (diff)
xhci: plat: Register shutdown for xhci_plat
[ Upstream commit b07c12517f2aed0add8ce18146bb426b14099392 ] Shutdown should be called for xhci_plat devices especially for situations where kexec might be used by stopping DMA transactions. Signed-off-by: Adam Wallis <awallis@codeaurora.org> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/host/xhci-plat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
index ca8b0b1ae37d..dec100811946 100644
--- a/drivers/usb/host/xhci-plat.c
+++ b/drivers/usb/host/xhci-plat.c
@@ -335,6 +335,7 @@ MODULE_DEVICE_TABLE(acpi, usb_xhci_acpi_match);
static struct platform_driver usb_xhci_driver = {
.probe = xhci_plat_probe,
.remove = xhci_plat_remove,
+ .shutdown = usb_hcd_platform_shutdown,
.driver = {
.name = "xhci-hcd",
.pm = DEV_PM_OPS,