Skip to content
Commit 4aa819c7 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Vinod Koul
Browse files

dmaengine: bcm2835: fix 64-bit warning



When building this driver on arm64, we get a harmless type
mismatch warning:

drivers/dma/bcm2835-dma.c: In function 'bcm2835_dma_fill_cb_chain_with_sg':
include/linux/kernel.h:743:17: warning: comparison of distinct pointer types lacks a cast
  (void) (&_min1 == &_min2);  \
                 ^
drivers/dma/bcm2835-dma.c:409:21: note: in expansion of macro 'min'
    cb->cb->length = min(len, max_len);

This changes the type of the 'len' variable to size_t, which
avoids the problem.

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Fixes: 388cc7a2

 ("dmaengine: bcm2835: add slave_sg support to bcm2835-dma")
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent 63637228
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment