diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-02-17 14:15:32 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-02-17 16:03:56 +0100 |
commit | 0937b8d869fdb42d6ad4fe312958639bd62c973f (patch) | |
tree | b1b0683473709a96ca3c59d84a35ccc860c0ceba | |
parent | 64d792063fff90b8118179b092feee09fe5cae13 (diff) | |
download | bootable_bootloader_goldelico_gta04-0937b8d869fdb42d6ad4fe312958639bd62c973f.tar.gz bootable_bootloader_goldelico_gta04-0937b8d869fdb42d6ad4fe312958639bd62c973f.tar.bz2 bootable_bootloader_goldelico_gta04-0937b8d869fdb42d6ad4fe312958639bd62c973f.zip |
pxa: fix assignment from incompatible pointer type
fix mmc_bread function prototype
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-rw-r--r-- | cpu/pxa/mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/pxa/mmc.c b/cpu/pxa/mmc.c index c0cfe65fb..039ce0f57 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; |