aboutsummaryrefslogtreecommitdiff
path: root/stubs/monitor-arm-gic.c
blob: b3429243ef86399ffd502ba25efc81a827551235 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include "qemu/osdep.h"
#include "qapi/error.h"
#include "qapi/qapi-commands-misc-arm.h"


GICCapabilityList *qmp_query_gic_capabilities(Error **errp)
{
    error_setg(errp, "GIC hardware is not available on this target");
    return NULL;
}