summaryrefslogtreecommitdiff
path: root/cmd/vbe.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-01-17 10:47:20 -0700
committerTom Rini <trini@konsulko.com>2023-01-23 18:11:39 -0500
commitf1779f2cc3b91ccf2ebb1ec7fcd703c3a3d20cef (patch)
treebbf6ed03d483c1eda76675add14096bc51d6d4d2 /cmd/vbe.c
parent67bb9731221a70e23d185b7de43dd27cc986fa00 (diff)
vbe: Avoid a build failure when bloblist is not enabled
This needs to be able to work (at least partially) without the bloblist active. Add a condition for this. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/vbe.c')
-rw-r--r--cmd/vbe.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/cmd/vbe.c b/cmd/vbe.c
index befaf07c64..600690394e 100644
--- a/cmd/vbe.c
+++ b/cmd/vbe.c
@@ -79,10 +79,13 @@ static int do_vbe_info(struct cmd_tbl *cmdtp, int flag, int argc,
static int do_vbe_state(struct cmd_tbl *cmdtp, int flag, int argc,
char *const argv[])
{
- struct vbe_handoff *handoff;
+ struct vbe_handoff *handoff = NULL;
int i;
- handoff = bloblist_find(BLOBLISTT_VBE, sizeof(struct vbe_handoff));
+ if (IS_ENABLED(CONFIG_BLOBLIST)) {
+ handoff = bloblist_find(BLOBLISTT_VBE,
+ sizeof(struct vbe_handoff));
+ }
if (!handoff) {
printf("No VBE state\n");
return CMD_RET_FAILURE;