summaryrefslogtreecommitdiff
path: root/tests/boot-order-test.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2016-03-10 14:09:58 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2016-03-22 22:20:16 +0100
commit6f061ea10f28c6cbe3ea588e84ef1f5fd27f0299 (patch)
tree298955d833b2a9bd876759e391b0443cc26fd484 /tests/boot-order-test.c
parentc80f6e9caa7647b576966534aaa0dc8f1b480f2b (diff)
downloadqemu-6f061ea10f28c6cbe3ea588e84ef1f5fd27f0299.tar.gz
fw_cfg: Split fw_cfg_keys.h off fw_cfg.h
Much of fw_cfg.h's contents is #ifndef NO_QEMU_PROTOS. This lets a few places include it without satisfying the dependencies of the suppressed code. If you somehow include it with NO_QEMU_PROTOS, any future includes are ignored. Unnecessarily unclean. Move the stuff not under NO_QEMU_PROTOS into its own header fw_cfg_keys.h, and include it as appropriate. Tidy up the moved code to please checkpatch. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/boot-order-test.c')
-rw-r--r--tests/boot-order-test.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/boot-order-test.c b/tests/boot-order-test.c
index 210964a00c..a6d8bd5cbf 100644
--- a/tests/boot-order-test.c
+++ b/tests/boot-order-test.c
@@ -15,9 +15,7 @@
#include "libqos/fw_cfg.h"
#include "libqtest.h"
-#define NO_QEMU_PROTOS
-#include "hw/nvram/fw_cfg.h"
-#undef NO_QEMU_PROTOS
+#include "hw/nvram/fw_cfg_keys.h"
typedef struct {
const char *args;