Revision 3bd6cbbb181b6ae60a1d1f33ccd325b45f71aa2a authored by Peter Maydell on 30 July 2019, 21:02:05 UTC, committed by Peter Maydell on 30 July 2019, 21:02:05 UTC
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
1 parent 4366e7c
Raw File
fw_cfg.c
/*
 * fw_cfg stubs
 *
 * Copyright (c) 2019 Red Hat, Inc.
 *
 * Author:
 *   Philippe Mathieu-Daudé <philmd@redhat.com>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */

#include "qemu/osdep.h"
#include "hw/nvram/fw_cfg.h"

const char *fw_cfg_arch_key_name(uint16_t key)
{
    return NULL;
}
back to top