summary refs log tree commit diff stats
path: root/system/device_tree-stub.c
blob: 428330b0feca8099c92b97d5107d4cd391a12277 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "qemu/osdep.h"
#include "qapi/error.h"
#include "qapi/qapi-commands-machine.h"

#ifdef CONFIG_FDT
void qmp_dumpdtb(const char *filename, Error **errp)
{
    ERRP_GUARD();

    error_setg(errp, "This machine doesn't have an FDT");
    error_append_hint(errp, "(this machine type definitely doesn't use FDT)\n");
}
#endif