diff options
| author | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
|---|---|---|
| committer | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
| commit | c74a7469f97c0f40b46e82ee979f9fb1bb6e847c (patch) | |
| tree | f2690a1a916b73ef94657fbf0e0141ae57701825 /arch/x86/platform/efi/efi_64.c | |
| parent | 6f15a7de86c8cf2dc09fc9e6d07047efa40ef809 (diff) | |
| parent | 500775074f88d9cf5416bed2ca19592812d62c41 (diff) | |
Merge drm/drm-next into drm-intel-next-queued
We need a backmerge to get DP_DPCD_REV_14 before we push other
i915 changes to dinq that could break compilation.
Signed-off-by: Rodrigo Vivi <[email protected]>
Diffstat (limited to 'arch/x86/platform/efi/efi_64.c')
| -rw-r--r-- | arch/x86/platform/efi/efi_64.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/arch/x86/platform/efi/efi_64.c b/arch/x86/platform/efi/efi_64.c index bed7e7f4e44c..77873ce700ae 100644 --- a/arch/x86/platform/efi/efi_64.c +++ b/arch/x86/platform/efi/efi_64.c @@ -166,14 +166,14 @@ void __init efi_call_phys_epilog(pgd_t *save_pgd)  		pgd = pgd_offset_k(pgd_idx * PGDIR_SIZE);  		set_pgd(pgd_offset_k(pgd_idx * PGDIR_SIZE), save_pgd[pgd_idx]); -		if (!(pgd_val(*pgd) & _PAGE_PRESENT)) +		if (!pgd_present(*pgd))  			continue;  		for (i = 0; i < PTRS_PER_P4D; i++) {  			p4d = p4d_offset(pgd,  					 pgd_idx * PGDIR_SIZE + i * P4D_SIZE); -			if (!(p4d_val(*p4d) & _PAGE_PRESENT)) +			if (!p4d_present(*p4d))  				continue;  			pud = (pud_t *)p4d_page_vaddr(*p4d); @@ -225,7 +225,7 @@ int __init efi_alloc_page_tables(void)  	pud = pud_alloc(&init_mm, p4d, EFI_VA_END);  	if (!pud) { -		if (pgtable_l5_enabled) +		if (pgtable_l5_enabled())  			free_page((unsigned long) pgd_page_vaddr(*pgd));  		free_pages((unsigned long)efi_pgd, PGD_ALLOCATION_ORDER);  		return -ENOMEM; |