aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/core/buffer.c
diff options
context:
space:
mode:
authorSalil Kapur <salilkapur93@gmail.com>2018-08-05 21:28:08 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-09-10 20:01:04 +0200
commit71741bd6776aff40bc6e57d458a65d7e41190274 (patch)
treee01dd04479832a7fe87f63627f7d999f168b86ef /drivers/usb/core/buffer.c
parentusb: ehci-sh: convert to SPDX identifiers (diff)
downloadlinux-dev-71741bd6776aff40bc6e57d458a65d7e41190274.tar.xz
linux-dev-71741bd6776aff40bc6e57d458a65d7e41190274.zip
USB: Removing NULL check for pool since dma_pool_destroy is safe
Removing NULL check for pool since dma_pool_destroy is safe Signed-off-by: Salil Kapur <salilkapur93@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/core/buffer.c')
-rw-r--r--drivers/usb/core/buffer.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/usb/core/buffer.c b/drivers/usb/core/buffer.c
index 77eef8acff94..f641342cdec0 100644
--- a/drivers/usb/core/buffer.c
+++ b/drivers/usb/core/buffer.c
@@ -101,12 +101,8 @@ void hcd_buffer_destroy(struct usb_hcd *hcd)
return;
for (i = 0; i < HCD_BUFFER_POOLS; i++) {
- struct dma_pool *pool = hcd->pool[i];
-
- if (pool) {
- dma_pool_destroy(pool);
- hcd->pool[i] = NULL;
- }
+ dma_pool_destroy(hcd->pool[i]);
+ hcd->pool[i] = NULL;
}
}