]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
arm64/dma-mapping: Remove extraneous null-pointer checks
authorOlav Haugan <ohaugan@codeaurora.org>
Tue, 13 Jun 2017 20:56:14 +0000 (13:56 -0700)
committerWill Deacon <will.deacon@arm.com>
Thu, 15 Jun 2017 10:40:22 +0000 (11:40 +0100)
The current null-pointer check in __dma_alloc_coherent and
__dma_free_coherent is not needed anymore since the
__dma_alloc/__dma_free functions won't be called if !dev (dummy ops will
be called instead).

Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Olav Haugan <ohaugan@codeaurora.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm64/include/asm/dma-mapping.h
arch/arm64/mm/dma-mapping.c

index 5392dbeffa455ec75043e6dc9067528fa8ae1ea0..f72779aad276a90b51e5de97418117c1de9efba5 100644 (file)
@@ -48,8 +48,6 @@ void arch_teardown_dma_ops(struct device *dev);
 /* do not use this function in a driver */
 static inline bool is_device_dma_coherent(struct device *dev)
 {
-       if (!dev)
-               return false;
        return dev->archdata.dma_coherent;
 }
 
index 3216e098c05877178705cdcd659a375e0afec0fd..3e340b625436d246f2211a204e0209098221b57c 100644 (file)
@@ -95,11 +95,6 @@ static void *__dma_alloc_coherent(struct device *dev, size_t size,
                                  dma_addr_t *dma_handle, gfp_t flags,
                                  unsigned long attrs)
 {
-       if (dev == NULL) {
-               WARN_ONCE(1, "Use an actual device structure for DMA allocation\n");
-               return NULL;
-       }
-
        if (IS_ENABLED(CONFIG_ZONE_DMA) &&
            dev->coherent_dma_mask <= DMA_BIT_MASK(32))
                flags |= GFP_DMA;
@@ -128,10 +123,6 @@ static void __dma_free_coherent(struct device *dev, size_t size,
        bool freed;
        phys_addr_t paddr = dma_to_phys(dev, dma_handle);
 
-       if (dev == NULL) {
-               WARN_ONCE(1, "Use an actual device structure for DMA allocation\n");
-               return;
-       }
 
        freed = dma_release_from_contiguous(dev,
                                        phys_to_page(paddr),