i2c: cpm: Fix build break due to incompatible pointer types
authorMichael Ellerman <mpe@ellerman.id.au>
Wed, 13 Apr 2016 03:59:14 +0000 (13:59 +1000)
committerWilly Tarreau <w@1wt.eu>
Tue, 7 Jun 2016 08:42:51 +0000 (10:42 +0200)
commitfaf35c269ae62e88b23e271682a18c6f0d5f83a0
tree17065a029a26c11502d212b8030b279591b189f4
parentadaad9d866105bcb8f87293a0a675f573a39129d
i2c: cpm: Fix build break due to incompatible pointer types

commit 609d5a1b2b35bb62b4b3750396e55453160c2a17 upstream.

Since commit ea8daa7b9784 ("kbuild: Add option to turn incompatible
pointer check into error"), assignments from an incompatible pointer
types have become a hard error, eg:

  drivers/i2c/busses/i2c-cpm.c:545:91: error: passing argument 3 of
  'dma_alloc_coherent' from incompatible pointer type

Fix the build break by converting txdma & rxdma to dma_addr_t.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Cc: stable@kernel.org
Fixes: ea8daa7b9784
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/i2c/busses/i2c-cpm.c