Lines Matching refs:bdev
275 struct udevice *bdev; in mmc_bind() local
285 devnum, 512, 0, &bdev); in mmc_bind()
290 bdesc = dev_get_uclass_platdata(bdev); in mmc_bind()
311 struct udevice *bdev; in mmc_unbind() local
313 device_find_first_child(dev, &bdev); in mmc_unbind()
314 if (bdev) { in mmc_unbind()
315 device_remove(bdev, DM_REMOVE_NORMAL); in mmc_unbind()
316 device_unbind(bdev); in mmc_unbind()
322 static int mmc_select_hwpart(struct udevice *bdev, int hwpart) in mmc_select_hwpart() argument
324 struct udevice *mmc_dev = dev_get_parent(bdev); in mmc_select_hwpart()
326 struct blk_desc *desc = dev_get_uclass_platdata(bdev); in mmc_select_hwpart()