From: Mark Asselstine Date: Sun, 4 Mar 2012 11:33:28 +0000 (+0200) Subject: rpmsg: fix build warning when dma_addr_t is 64-bit X-Git-Tag: v3.4-rc1~87^2^2~7 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d8ae5c22b73852e9b23ba4e520a64c29bbfc939;p=pandora-kernel.git rpmsg: fix build warning when dma_addr_t is 64-bit dev_dbg() in rpmsg_probe() made use of the %x formatting that expects an 'unsigned int' which dma_addr_t is not in cases where dma_addr_t is 64-bit (CONFIG_ARCH_DMA_ADDR_T_64BIT). Casting to a 'unsigned long long' and using %llx will avoid this. Signed-off-by: Mark Asselstine CC: Ohad Ben-Cohen CC: Arnd Bergmann Signed-off-by: Ohad Ben-Cohen --- Reading git-diff-tree failed