]> git.sur5r.net Git - u-boot/commitdiff
efi_stub: Fix GDT_NOTSYS check
authorAlexander Graf <agraf@suse.de>
Mon, 4 Dec 2017 15:33:26 +0000 (16:33 +0100)
committerBin Meng <bmeng.cn@gmail.com>
Fri, 30 Mar 2018 08:05:07 +0000 (16:05 +0800)
The get_codeseg32() wants to know if a passed in descriptor has
flag GDT_NOTSYS set (desc & GDT_NOTSYS), not whether desc and
GDT_NOTSYS are not != 0 (desk && GDT_NOTSYS).

This is an obvious typo. Fix it up.

Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
lib/efi/efi_stub.c

index 2e8d409d31af1ea99f90932dfe6c292a13ef7ce0..205aa1994726d24e8119ce323c07975190df225f 100644 (file)
@@ -182,7 +182,7 @@ static int get_codeseg32(void)
                                << 16;
                base <<= 12;    /* 4KB granularity */
                limit <<= 12;
-               if ((desc & GDT_PRESENT) && (desc && GDT_NOTSYS) &&
+               if ((desc & GDT_PRESENT) && (desc & GDT_NOTSYS) &&
                    !(desc & GDT_LONG) && (desc & GDT_4KB) &&
                    (desc & GDT_32BIT) && (desc & GDT_CODE) &&
                    CONFIG_SYS_TEXT_BASE > base &&