systab64          324 arch/x86/platform/efi/efi.c 		efi_system_table_64_t *systab64;
systab64          333 arch/x86/platform/efi/efi.c 		systab64 = early_memremap((unsigned long)phys,
systab64          334 arch/x86/platform/efi/efi.c 					 sizeof(*systab64));
systab64          335 arch/x86/platform/efi/efi.c 		if (systab64 == NULL) {
systab64          342 arch/x86/platform/efi/efi.c 		efi_systab.hdr = systab64->hdr;
systab64          344 arch/x86/platform/efi/efi.c 					      systab64->fw_vendor;
systab64          345 arch/x86/platform/efi/efi.c 		tmp |= data ? data->fw_vendor : systab64->fw_vendor;
systab64          346 arch/x86/platform/efi/efi.c 		efi_systab.fw_revision = systab64->fw_revision;
systab64          347 arch/x86/platform/efi/efi.c 		efi_systab.con_in_handle = systab64->con_in_handle;
systab64          348 arch/x86/platform/efi/efi.c 		tmp |= systab64->con_in_handle;
systab64          349 arch/x86/platform/efi/efi.c 		efi_systab.con_in = systab64->con_in;
systab64          350 arch/x86/platform/efi/efi.c 		tmp |= systab64->con_in;
systab64          351 arch/x86/platform/efi/efi.c 		efi_systab.con_out_handle = systab64->con_out_handle;
systab64          352 arch/x86/platform/efi/efi.c 		tmp |= systab64->con_out_handle;
systab64          353 arch/x86/platform/efi/efi.c 		efi_systab.con_out = systab64->con_out;
systab64          354 arch/x86/platform/efi/efi.c 		tmp |= systab64->con_out;
systab64          355 arch/x86/platform/efi/efi.c 		efi_systab.stderr_handle = systab64->stderr_handle;
systab64          356 arch/x86/platform/efi/efi.c 		tmp |= systab64->stderr_handle;
systab64          357 arch/x86/platform/efi/efi.c 		efi_systab.stderr = systab64->stderr;
systab64          358 arch/x86/platform/efi/efi.c 		tmp |= systab64->stderr;
systab64          361 arch/x86/platform/efi/efi.c 				     (void *)(unsigned long)systab64->runtime;
systab64          362 arch/x86/platform/efi/efi.c 		tmp |= data ? data->runtime : systab64->runtime;
systab64          363 arch/x86/platform/efi/efi.c 		efi_systab.boottime = (void *)(unsigned long)systab64->boottime;
systab64          364 arch/x86/platform/efi/efi.c 		tmp |= systab64->boottime;
systab64          365 arch/x86/platform/efi/efi.c 		efi_systab.nr_tables = systab64->nr_tables;
systab64          367 arch/x86/platform/efi/efi.c 					   systab64->tables;
systab64          368 arch/x86/platform/efi/efi.c 		tmp |= data ? data->tables : systab64->tables;
systab64          370 arch/x86/platform/efi/efi.c 		early_memunmap(systab64, sizeof(*systab64));