summary refs log tree commit diff stats
path: root/fsdev/qemu-fsdev-dummy.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-06-08 12:15:43 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2011-06-08 12:15:43 -0500
commit93e0597ef9fa266756c30e61fafe4b70fc7ce6a6 (patch)
treeb1dcd7925329853ac5284bc2c12ebecdfa44fa34 /fsdev/qemu-fsdev-dummy.c
parentac779fe2334ebea5d4a365b053d786f7748a1db5 (diff)
parent5c3234c6c037943bd4c2d643a1b8cc35f563dbdb (diff)
downloadfocaccia-qemu-93e0597ef9fa266756c30e61fafe4b70fc7ce6a6.tar.gz
focaccia-qemu-93e0597ef9fa266756c30e61fafe4b70fc7ce6a6.zip
Merge remote-tracking branch 'jvrao/for-anthony' into staging
Diffstat (limited to 'fsdev/qemu-fsdev-dummy.c')
-rw-r--r--fsdev/qemu-fsdev-dummy.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/fsdev/qemu-fsdev-dummy.c b/fsdev/qemu-fsdev-dummy.c
new file mode 100644
index 0000000000..619e163a46
--- /dev/null
+++ b/fsdev/qemu-fsdev-dummy.c
@@ -0,0 +1,20 @@
+/*
+ * Virtio 9p
+ *
+ * Copyright IBM, Corp. 2010
+ *
+ * Authors:
+ *  Gautham R Shenoy <ego@in.ibm.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2.  See
+ * the COPYING file in the top-level directory.
+ *
+ */
+#include <stdio.h>
+#include <string.h>
+#include "qemu-fsdev.h"
+
+int qemu_fsdev_add(QemuOpts *opts)
+{
+    return 0;
+}