xhci: tegra: Prevent error pointer dereference
authorThierry Reding <treding@nvidia.com>
Wed, 20 Feb 2019 13:48:41 +0000 (14:48 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Feb 2019 16:55:04 +0000 (17:55 +0100)
commit0326ccb5feac6eac35ba6254260e2774277cd976
tree60f3db9ca8a5bd894e6ee51d5c4a47e467cab2c5
parent79595a734a68f768774d3e9ad6b5ad994413c578
xhci: tegra: Prevent error pointer dereference

During initialization, the host and super-speed power domains will
contain an ERR_PTR() encoded error code rather than being NULL. To
avoid a crash, use a !IS_ERR_OR_NULL() condition during cleanup.

Signed-off-by: Thierry Reding <treding@nvidia.com>
Fixes: 6494a9ad86de ("usb: xhci: tegra: Add genpd support")
Cc: stable <stable@vger.kernel.org>
Reviewed-by: Jon Hunter <jonathanh@nvidia.com>
Acked-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/xhci-tegra.c