diff options
author | Adam Wallis <awallis@codeaurora.org> | 2017-03-28 15:55:28 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-29 12:13:49 +0200 |
commit | b07c12517f2aed0add8ce18146bb426b14099392 (patch) | |
tree | c04d73ac101b2c66e58c14586d897cb46d9d7eb1 /drivers/usb/host | |
parent | 1633682053a7ee8058e10c76722b9b28e97fb73f (diff) | |
download | linux-b07c12517f2aed0add8ce18146bb426b14099392.tar.gz linux-b07c12517f2aed0add8ce18146bb426b14099392.tar.bz2 linux-b07c12517f2aed0add8ce18146bb426b14099392.zip |
xhci: plat: Register shutdown for xhci_plat
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>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/xhci-plat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c index bd02a6cd8e2c..6ed468fa7d5e 100644 --- a/drivers/usb/host/xhci-plat.c +++ b/drivers/usb/host/xhci-plat.c @@ -344,6 +344,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, |