xref: /openbmc/qemu/stubs/fw_cfg.c (revision 8dc7fd56dd4f56ab8ff1df3765ae6b5d3ac11c5e)
1 /*
2  * fw_cfg stubs
3  *
4  * Copyright (c) 2019 Red Hat, Inc.
5  *
6  * Author:
7  *   Philippe Mathieu-Daudé <philmd@redhat.com>
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  *
11  * This work is licensed under the terms of the GNU GPL, version 2 or later.
12  * See the COPYING file in the top-level directory.
13  */
14 
15 #include "qemu/osdep.h"
16 #include "hw/nvram/fw_cfg.h"
17 
fw_cfg_arch_key_name(uint16_t key)18 const char *fw_cfg_arch_key_name(uint16_t key)
19 {
20     return NULL;
21 }
22