mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-15 19:51:37 +00:00
x86: fsp: Don't enable FSP graphics if booted from coreboot
This driver cannot work when booted from coreboot, since the FSP information is not available. Disable it in that case, so that the coreboot video driver can be used instead. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
19987c9834
commit
937175ee72
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ static int fsp_video_probe(struct udevice *dev)
|
|||
int ret;
|
||||
|
||||
if (!ll_boot_init())
|
||||
return 0;
|
||||
return -ENODEV;
|
||||
|
||||
printf("Video: ");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue