From 13839974d14701626a2f9dcc5f8cf65783d51c11 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Fri, 28 Jan 2011 11:21:37 +0100 Subject: blockdev: New drive_get_next(), replacing qdev_init_bdrv() qdev_init_bdrv() doesn't belong into qdev.c; it's about drives, not qdevs. Rename to drive_get_next, move to blockdev.c, drop the bogus DeviceState argument, and return DriveInfo instead of BlockDriverState. Signed-off-by: Markus Armbruster Signed-off-by: Kevin Wolf --- blockdev.h | 1 + 1 file changed, 1 insertion(+) (limited to 'blockdev.h') diff --git a/blockdev.h b/blockdev.h index b8a88bff26..3ed66348d3 100644 --- a/blockdev.h +++ b/blockdev.h @@ -36,6 +36,7 @@ struct DriveInfo { DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit); int drive_get_max_bus(BlockInterfaceType type); +DriveInfo *drive_get_next(BlockInterfaceType type); void drive_uninit(DriveInfo *dinfo); DriveInfo *drive_get_by_blockdev(BlockDriverState *bs); -- cgit v1.2.1