aboutsummaryrefslogtreecommitdiff
path: root/hw/nvram
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2019-04-22 15:49:41 +0200
committerPhilippe Mathieu-Daudé <philmd@redhat.com>2019-05-23 14:10:31 +0200
commitb15c0f7d55934c609969f4e6e08efa5ed0f3ad28 (patch)
treead8bde753c8086abd400796c436ca30dc35f7e62 /hw/nvram
parent1f80b0d67e86f0180c72e9e943046d79a63c83f6 (diff)
downloadqemu-b15c0f7d55934c609969f4e6e08efa5ed0f3ad28.zip
qemu-b15c0f7d55934c609969f4e6e08efa5ed0f3ad28.tar.gz
qemu-b15c0f7d55934c609969f4e6e08efa5ed0f3ad28.tar.bz2
hw/nvram/fw_cfg: Add fw_cfg_arch_key_name()
Add fw_cfg_arch_key_name() which returns the name of an architecture-specific key. Reviewed-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20190422195020.1494-3-philmd@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'hw/nvram')
-rw-r--r--hw/nvram/fw_cfg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/nvram/fw_cfg.c b/hw/nvram/fw_cfg.c
index d374a97..b2dc0a8 100644
--- a/hw/nvram/fw_cfg.c
+++ b/hw/nvram/fw_cfg.c
@@ -100,7 +100,7 @@ static const char *key_name(uint16_t key)
};
if (key & FW_CFG_ARCH_LOCAL) {
- return NULL;
+ return fw_cfg_arch_key_name(key);
}
if (key < FW_CFG_FILE_FIRST) {
return fw_cfg_wellknown_keys[key];