Message ID | b5db9a6d-6194-ae7c-235d-dce772cb9a4c@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | USB: Removing NULL check for pool since dma_pool_destroy is safe | expand |
On Sat, Aug 04, 2018 at 12:10:22AM -0700, Salil Kapur wrote: > Removing NULL check for pool since dma_pool_destroy is safe > > Signed-off-by: Salil Kapur <salilkapur93@gmail.com> > --- > drivers/usb/core/buffer.c | 8 ++------ > 1 file 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; > } > } > > -- > 2.14.4 Hi, This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him a patch that has triggered this response. He used to manually respond to these common problems, but in order to save his sanity (he kept writing the same thing over and over, yet to different people), I was created. Hopefully you will not take offence and will fix the problem in your patch and resubmit it so that it can be accepted into the Linux kernel tree. You are receiving this message because of the following common error(s) as indicated below: - Your patch is malformed (tabs converted to spaces, linewrapped, etc.) and can not be applied. Please read the file, Documentation/email-clients.txt in order to fix this. If you wish to discuss this problem further, or you have questions about how to resolve this issue, please feel free to respond to this email and Greg will reply once he has dug out from the pending patches received from other developers. thanks, greg k-h's patch email bot -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
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; } }
Removing NULL check for pool since dma_pool_destroy is safe Signed-off-by: Salil Kapur <salilkapur93@gmail.com> --- drivers/usb/core/buffer.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-)