aboutsummaryrefslogtreecommitdiff
path: root/stubs/blockdev.c
diff options
context:
space:
mode:
Diffstat (limited to 'stubs/blockdev.c')
-rw-r--r--stubs/blockdev.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/stubs/blockdev.c b/stubs/blockdev.c
new file mode 100644
index 0000000000..5d0a79c3a6
--- /dev/null
+++ b/stubs/blockdev.c
@@ -0,0 +1,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);
+}