diff options
author | Tom Rini <trini@konsulko.com> | 2020-06-30 17:15:39 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-30 17:15:39 -0400 |
commit | bcfe764ee925d0820e82c69ccf75b71d142644c7 (patch) | |
tree | 8a9914800558194df74705c06160c24f1aa8248e /test/py/tests | |
parent | 0b7d95531cf25a7c71bd9855135da5e7098e7b97 (diff) | |
parent | b7cae5739741fad1327e64c18a0b30919bc77a0e (diff) |
Merge tag 'efi-2020-07-rc6-2' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-07-rc6 (2)
Fix an incorrect update of the GD register in efi_get_variable_common().
Fix an incorrect check for an FDT reg property.
Fix a device tree used for Python testing.
Diffstat (limited to 'test/py/tests')
-rw-r--r-- | test/py/tests/test_efi_fit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/py/tests/test_efi_fit.py b/test/py/tests/test_efi_fit.py index beaf4a3c51..06fb151c13 100644 --- a/test/py/tests/test_efi_fit.py +++ b/test/py/tests/test_efi_fit.py @@ -106,14 +106,14 @@ FDT_DATA = ''' / { #address-cells = <1>; - #size-cells = <0>; + #size-cells = <1>; model = "%(sys-arch)s %(fdt_type)s EFI FIT Boot Test"; compatible = "%(sys-arch)s"; reset@0 { compatible = "%(sys-arch)s,reset"; - reg = <0>; + reg = <0 4>; }; }; ''' |