xref: /qemu/fsdev/qemu-fsdev-dummy.c (revision 1c88c715)
1*1c88c715SAneesh Kumar K.V /*
2*1c88c715SAneesh Kumar K.V  * Virtio 9p
3*1c88c715SAneesh Kumar K.V  *
4*1c88c715SAneesh Kumar K.V  * Copyright IBM, Corp. 2010
5*1c88c715SAneesh Kumar K.V  *
6*1c88c715SAneesh Kumar K.V  * Authors:
7*1c88c715SAneesh Kumar K.V  *  Gautham R Shenoy <ego@in.ibm.com>
8*1c88c715SAneesh Kumar K.V  *
9*1c88c715SAneesh Kumar K.V  * This work is licensed under the terms of the GNU GPL, version 2.  See
10*1c88c715SAneesh Kumar K.V  * the COPYING file in the top-level directory.
11*1c88c715SAneesh Kumar K.V  *
12*1c88c715SAneesh Kumar K.V  */
13*1c88c715SAneesh Kumar K.V #include <stdio.h>
14*1c88c715SAneesh Kumar K.V #include <string.h>
15*1c88c715SAneesh Kumar K.V #include "qemu-fsdev.h"
16*1c88c715SAneesh Kumar K.V 
17*1c88c715SAneesh Kumar K.V int qemu_fsdev_add(QemuOpts *opts)
18*1c88c715SAneesh Kumar K.V {
19*1c88c715SAneesh Kumar K.V     return 0;
20*1c88c715SAneesh Kumar K.V }
21