]> git.proxmox.com Git - mirror_qemu.git/blame - fsdev/qemu-fsdev-dummy.c
qom: move include files to include/qom/
[mirror_qemu.git] / fsdev / qemu-fsdev-dummy.c
CommitLineData
1c88c715
AK
1/*
2 * Virtio 9p
3 *
4 * Copyright IBM, Corp. 2010
5 *
6 * Authors:
7 * Gautham R Shenoy <ego@in.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13#include <stdio.h>
14#include <string.h>
15#include "qemu-fsdev.h"
1c532d92 16#include "qemu-config.h"
017cf5b1 17#include "module.h"
1c88c715
AK
18
19int qemu_fsdev_add(QemuOpts *opts)
20{
21 return 0;
22}
1c532d92
EI
23
24static void fsdev_register_config(void)
25{
26 qemu_add_opts(&qemu_fsdev_opts);
27 qemu_add_opts(&qemu_virtfs_opts);
28}
29machine_init(fsdev_register_config);