Aneesh Kumar K.V | 1c88c71 | 2011-06-01 12:35:13 +0530 | [diff] [blame] | 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" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame^] | 16 | #include "qemu/config-file.h" |
| 17 | #include "qemu/module.h" |
Aneesh Kumar K.V | 1c88c71 | 2011-06-01 12:35:13 +0530 | [diff] [blame] | 18 | |
| 19 | int qemu_fsdev_add(QemuOpts *opts) |
| 20 | { |
| 21 | return 0; |
| 22 | } |
Edgar E. Iglesias | 1c532d9 | 2011-06-10 15:29:11 +0200 | [diff] [blame] | 23 | |
| 24 | static void fsdev_register_config(void) |
| 25 | { |
| 26 | qemu_add_opts(&qemu_fsdev_opts); |
| 27 | qemu_add_opts(&qemu_virtfs_opts); |
| 28 | } |
| 29 | machine_init(fsdev_register_config); |