diff options
Diffstat (limited to 'hw/cxl/cxl-host-stubs.c')
-rw-r--r-- | hw/cxl/cxl-host-stubs.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hw/cxl/cxl-host-stubs.c b/hw/cxl/cxl-host-stubs.c new file mode 100644 index 00000000..cae4afcd --- /dev/null +++ b/hw/cxl/cxl-host-stubs.c @@ -0,0 +1,15 @@ +/* + * CXL host parameter parsing routine stubs + * + * Copyright (c) 2022 Huawei + */ +#include "qemu/osdep.h" +#include "qapi/error.h" +#include "hw/cxl/cxl.h" +#include "hw/cxl/cxl_host.h" + +void cxl_fmws_link_targets(CXLState *stat, Error **errp) {}; +void cxl_machine_init(Object *obj, CXLState *state) {}; +void cxl_hook_up_pxb_registers(PCIBus *bus, CXLState *state, Error **errp) {}; + +const MemoryRegionOps cfmws_ops; |