blob: 4e700dd4e4f29465f05168742c993fa8a716c817 [file] [log] [blame]
Aneesh Kumar K.V1c88c712011-06-01 12:35:13 +05301/*
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"
Edgar E. Iglesias1c532d92011-06-10 15:29:11 +020016#include "qemu-config.h"
Aneesh Kumar K.V1c88c712011-06-01 12:35:13 +053017
18int qemu_fsdev_add(QemuOpts *opts)
19{
20 return 0;
21}
Edgar E. Iglesias1c532d92011-06-10 15:29:11 +020022
23static void fsdev_register_config(void)
24{
25 qemu_add_opts(&qemu_fsdev_opts);
26 qemu_add_opts(&qemu_virtfs_opts);
27}
28machine_init(fsdev_register_config);