backports: wrap dma_set_mask_and_coherent in LINUX_BACKPORT()
authorStefan Assmann <sassmann@kpanic.de>
Fri, 25 Apr 2014 07:14:28 +0000 (09:14 +0200)
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>
Fri, 2 May 2014 01:44:13 +0000 (18:44 -0700)
To avoid conflicts with any distribution kernel wrap
dma_set_mask_and_coherent with LINUX_BACKPORT().

Signed-off-by: Stefan Assmann <sassmann@kpanic.de>
Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
backport/backport-include/linux/dma-mapping.h

index 9b2bc9058bce110cdec691f65f751903d751ea2d..fdc3331b63fb954240e9f2a150a6f8f2d25e8a3b 100644 (file)
@@ -22,6 +22,7 @@ static inline void *dma_zalloc_coherent(struct device *dev, size_t size,
  * as the DMA API guarantees that the coherent DMA mask can be set to
  * the same or smaller than the streaming DMA mask.
  */
+#define dma_set_mask_and_coherent LINUX_BACKPORT(dma_set_mask_and_coherent)
 static inline int dma_set_mask_and_coherent(struct device *dev, u64 mask)
 {
        int rc = dma_set_mask(dev, mask);