Revision b89de436ff63218d31122b2176f7785b0628b3c6 authored by Edgar E. Iglesias on 02 November 2018, 13:19:12 UTC, committed by Peter Maydell on 02 November 2018, 14:10:53 UTC
Add a model of Xilinx Versal SoC.

Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Message-id: 20181102131913.1535-2-edgar.iglesias@xilinx.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
1 parent 0f8d06f
Raw File
uuid.c
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qapi/qapi-commands-misc.h"
#include "qemu/uuid.h"

UuidInfo *qmp_query_uuid(Error **errp)
{
    UuidInfo *info = g_malloc0(sizeof(*info));

    info->UUID = g_strdup(UUID_NONE);
    return info;
}

back to top