Merge remote-tracking branch 'kraxel/acpi.1' into staging
[qemu.git] / fsdev / qemu-fsdev-dummy.c
blob300f2758bed5e3d7cc9c34e1da95e5b5a5ce1d6b
1 /*
2 * Virtio 9p
4 * Copyright IBM, Corp. 2010
6 * Authors:
7 * Gautham R Shenoy <ego@in.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
13 #include <stdio.h>
14 #include <string.h>
15 #include "qemu-fsdev.h"
16 #include "qemu-config.h"
17 #include "module.h"
19 int qemu_fsdev_add(QemuOpts *opts)
21 return 0;
24 static void fsdev_register_config(void)
26 qemu_add_opts(&qemu_fsdev_opts);
27 qemu_add_opts(&qemu_virtfs_opts);
29 machine_init(fsdev_register_config);