xref: /qemu/hw/mem/cxl_type3_stubs.c (revision 7bdd67a5)
1 
2 #include "qemu/osdep.h"
3 #include "qapi/error.h"
4 #include "qapi/qapi-commands-cxl.h"
5 
6 void qmp_cxl_inject_uncorrectable_errors(const char *path,
7                                          CXLUncorErrorRecordList *errors,
8                                          Error **errp)
9 {
10     error_setg(errp, "CXL Type 3 support is not compiled in");
11 }
12 
13 void qmp_cxl_inject_correctable_error(const char *path, CxlCorErrorType type,
14                                       Error **errp)
15 {
16     error_setg(errp, "CXL Type 3 support is not compiled in");
17 }
18