blob: 5d0a79c3a61f45ac6738edc6abccdc1ee492c14a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <assert.h>
#include "sysemu/blockdev.h"
DriveInfo *drive_get_by_blockdev(BlockDriverState *bs)
{
return NULL;
}
void drive_info_del(DriveInfo *dinfo)
{
assert(!dinfo);
}
|