mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
Blackfin: convert bfin_sdh to legacy mmc
The Blackfin SDH controller is still using the legacy framework, so update the driver to use the renamed functions. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
d248cfb2d9
commit
d3c38d96b9
1 changed files with 2 additions and 12 deletions
|
@ -293,7 +293,7 @@ mmc_bwrite(int dev, unsigned long start, lbaint_t blkcnt, const void *buffer)
|
||||||
printf("MMC_CMD_SET_BLOCKLEN failed\n");
|
printf("MMC_CMD_SET_BLOCKLEN failed\n");
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
ret = mmc_cmd(MMC_CMD_WRITE_BLOCK,
|
ret = mmc_cmd(MMC_CMD_WRITE_SINGLE_BLOCK,
|
||||||
start * mmc_blkdev.blksz, resp,
|
start * mmc_blkdev.blksz, resp,
|
||||||
MMC_RSP_R1);
|
MMC_RSP_R1);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
|
@ -462,7 +462,7 @@ static int mmc_init_card(struct mmc_cid *cid, int verbose)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int mmc_init(int verbose)
|
int mmc_legacy_init(int verbose)
|
||||||
{
|
{
|
||||||
__u16 pwr_ctl = 0;
|
__u16 pwr_ctl = 0;
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -530,16 +530,6 @@ int mmc_init(int verbose)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int mmc_read(ulong src, uchar *dst, int size)
|
|
||||||
{
|
|
||||||
return -ENOSYS;
|
|
||||||
}
|
|
||||||
|
|
||||||
int mmc_write(uchar *src, ulong dst, int size)
|
|
||||||
{
|
|
||||||
return -ENOSYS;
|
|
||||||
}
|
|
||||||
|
|
||||||
int mmc2info(ulong addr)
|
int mmc2info(ulong addr)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue