1 #include "qemu/osdep.h" 2 #include "qapi/error.h" 3 #include "qapi/qapi-commands-machine.h" 4 5 #ifdef CONFIG_FDT 6 void qmp_dumpdtb(const char *filename, Error **errp) 7 { 8 error_setg(errp, "This machine doesn't have a FDT"); 9 } 10 #endif 11