1. Jan 15, 2018
    • Arnd Bergmann's avatar
      net: netsec: use dma_addr_t for storing dma address · 54f7bf72
      Arnd Bergmann authored
      
      
      On targets that have different sizes for phys_addr_t and dma_addr_t,
      we get a type mismatch error:
      
      drivers/net/ethernet/socionext/netsec.c: In function 'netsec_alloc_dring':
      drivers/net/ethernet/socionext/netsec.c:970:9: error: passing argument 3 of 'dma_zalloc_coherent' from incompatible pointer type [-Werror=incompatible-pointer-types]
      
      The code is otherwise correct, as the address is never actually used as a
      physical address but only passed into a DMA register.  For consistently,
      I'm changing the variable name as well, to clarify that this is a DMA
      address.
      
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Acked-by: default avatarArd Biesheuvel <ard.biesheuvel@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      54f7bf72
  2. Jan 12, 2018
  3. Jan 11, 2018