2011-06-01 09:05:13 +02:00
|
|
|
/*
|
2016-06-06 11:52:34 +02:00
|
|
|
* 9p
|
2011-06-01 09:05:13 +02:00
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2010
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Gautham R Shenoy <ego@in.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
2016-01-26 19:17:10 +01:00
|
|
|
#include "qemu/osdep.h"
|
2011-06-01 09:05:13 +02:00
|
|
|
#include "qemu-fsdev.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/config-file.h"
|
|
|
|
#include "qemu/module.h"
|
2011-06-01 09:05:13 +02:00
|
|
|
|
|
|
|
int qemu_fsdev_add(QemuOpts *opts)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|