aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/core/buffer.c
diff options
context:
space:
mode:
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)
101 return; 101 return;
102 102
103 for (i = 0; i < HCD_BUFFER_POOLS; i++) { 103 for (i = 0; i < HCD_BUFFER_POOLS; i++) {
104 struct dma_pool *pool = hcd->pool[i]; 104 dma_pool_destroy(hcd->pool[i]);
105 105 hcd->pool[i] = NULL;
106 if (pool) {
107 dma_pool_destroy(pool);
108 hcd->pool[i] = NULL;
109 }
110 } 106 }
111} 107}
112 108