From: Jean-Christophe PLAGNIOL-VILLARD Date: Sun, 17 Feb 2008 13:15:32 +0000 (+0100) Subject: pxa: fix assignment from incompatible pointer type X-Git-Tag: v2008.10-rc1~702 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0937b8d869fdb42d6ad4fe312958639bd62c973f;p=platform%2Fkernel%2Fu-boot.git pxa: fix assignment from incompatible pointer type fix mmc_bread function prototype Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- diff --git a/cpu/pxa/mmc.c b/cpu/pxa/mmc.c index c0cfe65..039ce0f 100644 --- a/cpu/pxa/mmc.c +++ b/cpu/pxa/mmc.c @@ -375,7 +375,7 @@ mmc_write(uchar * src, ulong dst, int size) ulong /****************************************************/ -mmc_bread(int dev_num, ulong blknr, ulong blkcnt, ulong * dst) +mmc_bread(int dev_num, ulong blknr, lbaint_t blkcnt, void *dst) /****************************************************/ { int mmc_block_size = MMC_BLOCK_SIZE;