From: Greg Kroah-Hartman Date: Thu, 29 Apr 2010 22:46:07 +0000 (-0700) Subject: USB: remove unused usb_buffer_alloc and usb_buffer_free macros X-Git-Tag: v2.6.35-rc1~471^2 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=e26bcf37234c67624f62d9fc95f922b8dbda1363;p=~emulex%2Finfiniband.git USB: remove unused usb_buffer_alloc and usb_buffer_free macros Now that all callers are converted over, remove the compatibility functions and all is good. Cc: Daniel Mack Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/usb.h b/include/linux/usb.h index 88e854cd6b3..d5922a87799 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h @@ -1372,18 +1372,6 @@ void *usb_alloc_coherent(struct usb_device *dev, size_t size, void usb_free_coherent(struct usb_device *dev, size_t size, void *addr, dma_addr_t dma); -/* Compatible macros while we switch over */ -static inline void *usb_buffer_alloc(struct usb_device *dev, size_t size, - gfp_t mem_flags, dma_addr_t *dma) -{ - return usb_alloc_coherent(dev, size, mem_flags, dma); -} -static inline void usb_buffer_free(struct usb_device *dev, size_t size, - void *addr, dma_addr_t dma) -{ - return usb_free_coherent(dev, size, addr, dma); -} - #if 0 struct urb *usb_buffer_map(struct urb *urb); void usb_buffer_dmasync(struct urb *urb);