summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRob Clark <robdclark@gmail.com>2017-08-04 07:52:03 -0400
committerAlexander Graf <agraf@suse.de>2017-08-11 13:49:23 +0200
commit3d9880784ed5cd503b0d69128ea1841102ff522e (patch)
treedff49a07516df7dcd9950464b00adc048530c465 /lib
parent796a78cbe5676fc7562b50c7a0191fa56c8c4772 (diff)
downloadu-boot-3d9880784ed5cd503b0d69128ea1841102ff522e.tar.gz
efi_loader: GOP fix for no display
uclass_first_device() returns 0 if there is no device, but error if there is a device that failed to probe. Signed-off-by: Rob Clark <robdclark@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/efi_loader/efi_gop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_gop.c b/lib/efi_loader/efi_gop.c
index e063e0c79b..411a8c9226 100644
--- a/lib/efi_loader/efi_gop.c
+++ b/lib/efi_loader/efi_gop.c
@@ -137,7 +137,7 @@ int efi_gop_register(void)
struct udevice *vdev;
/* We only support a single video output device for now */
- if (uclass_first_device(UCLASS_VIDEO, &vdev))
+ if (uclass_first_device(UCLASS_VIDEO, &vdev) || !vdev)
return -1;
struct video_priv *priv = dev_get_uclass_priv(vdev);