1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 3 #include "qemu/osdep.h" 4 #include "qapi/error.h" 5 #include "qapi/qapi-commands-misc-arm.h" 6 7 8 GICCapabilityList *qmp_query_gic_capabilities(Error **errp) 9 { 10 error_setg(errp, "GIC hardware is not available on this target"); 11 return NULL; 12 } 13