| 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 | ERRP_GUARD(); |
| 9 | |
| 10 | error_setg(errp, "This machine doesn't have an FDT"); |
| 11 | error_append_hint(errp, "(this machine type definitely doesn't use FDT)\n"); |
| 12 | } |
| 13 | #endif |