ppa/fm/qe: use block layer in ppa/fm/qe driver

At present the MMC subsystem maintains its own list of MMC devices.
This cannot work with driver model when CONFIG_BLK is enabled, use
blk_dread to replace previous mmc read interface, use
mmc_get_blk_desc to get the mmc device property.

Signed-off-by: Yinbo Zhu <yinbo.zhu@nxp.com>
[York S: reformatted commit message]
Reviewed-by: York Sun <york.sun@nxp.com>
This commit is contained in:
Yinbo Zhu
2018-09-25 14:47:06 +08:00
committed by York Sun
parent 9dc8d155d4
commit c3ced8a6ed
3 changed files with 5 additions and 6 deletions

View File

@@ -218,7 +218,7 @@ void u_qe_init(void)
printf("\nMMC read: dev # %u, block # %u, count %u ...\n",
dev, blk, cnt);
mmc_init(mmc);
(void)mmc->block_dev.block_read(&mmc->block_dev, blk, cnt,
(void)blk_dread(mmc_get_blk_desc(mmc), blk, cnt,
addr);
}
#endif