diff options
author | Allen Kay <allen.m.kay@intel.com> | 2012-06-21 15:40:09 +0000 |
---|---|---|
committer | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2012-06-21 16:06:10 +0000 |
commit | eaab4d60d3ad908936564492862e8a84f5fa59b2 (patch) | |
tree | 7f306179c3bae763987b5edec90fea7b1e3b6a3f /hw/xen_pt_config_init.c | |
parent | 679042f0e1eac0af1e03759efe8761e7b4422588 (diff) |
Introduce Xen PCI Passthrough, qdevice
A more complete history can be found here:
git://xenbits.xensource.com/qemu-xen-unstable.git
Signed-off-by: Allen Kay <allen.m.kay@intel.com>
Signed-off-by: Guy Zana <guy@neocleus.com>
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Diffstat (limited to 'hw/xen_pt_config_init.c')
-rw-r--r-- | hw/xen_pt_config_init.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hw/xen_pt_config_init.c b/hw/xen_pt_config_init.c new file mode 100644 index 0000000000..64d22e8a07 --- /dev/null +++ b/hw/xen_pt_config_init.c @@ -0,0 +1,11 @@ +#include "xen_pt.h" + +XenPTRegGroup *xen_pt_find_reg_grp(XenPCIPassthroughState *s, uint32_t address) +{ + return NULL; +} + +XenPTReg *xen_pt_find_reg(XenPTRegGroup *reg_grp, uint32_t address) +{ + return NULL; +} |