x86: pci: Don't return a vesa mode when there is not video

If the video has not been set up, we should not return a success code. This
can be detected by seeing if any of the variables are non-zero.

Signed-off-by: Simon Glass <sjg@chromium.org>
master
Simon Glass 10 years ago
parent 6dcc815984
commit 23609c71dc
  1. 2
      drivers/pci/pci_rom.c

@ -205,7 +205,7 @@ int vbe_get_video_info(struct graphic_device *gdev)
gdev->vprBase = vesa->phys_base_ptr;
gdev->cprBase = vesa->phys_base_ptr;
return 0;
return gdev->winSizeX ? 0 : -ENOSYS;
#else
return -ENOSYS;
#endif

Loading…
Cancel
Save