summaryrefslogtreecommitdiff
path: root/usr/src/cmd/bhyve/bootrom.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/cmd/bhyve/bootrom.h')
-rw-r--r--usr/src/cmd/bhyve/bootrom.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/cmd/bhyve/bootrom.h b/usr/src/cmd/bhyve/bootrom.h
index da802343ee..f718d5728c 100644
--- a/usr/src/cmd/bhyve/bootrom.h
+++ b/usr/src/cmd/bhyve/bootrom.h
@@ -36,6 +36,8 @@
#include <stdint.h>
#include <limits.h>
+#include "config.h"
+
struct vmctx;
void init_bootrom(struct vmctx *ctx);
@@ -45,6 +47,6 @@ enum {
};
int bootrom_alloc(struct vmctx *ctx, size_t len, int prot, int flags,
char **region_out, uint64_t *gpa_out);
-int bootrom_loadrom(struct vmctx *ctx, const char *romfile);
+int bootrom_loadrom(struct vmctx *ctx, const nvlist_t *nvl);
#endif