MdePkg: Clean up source files
1. Do not use tab characters 2. No trailing white space in one line 3. All files must end with CRLF Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
#------------------------------------------------------------------------------
|
||||
#------------------------------------------------------------------------------
|
||||
#
|
||||
# CpuFlushTlb() for ARM
|
||||
#
|
||||
# Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
# Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
|
@@ -1,8 +1,8 @@
|
||||
;------------------------------------------------------------------------------
|
||||
;------------------------------------------------------------------------------
|
||||
;
|
||||
; CpuFlushTlb() for ARM
|
||||
;
|
||||
; Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
||||
; Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
; Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
||||
; This program and the accompanying materials
|
||||
; are licensed and made available under the terms and conditions of the BSD License
|
||||
@@ -29,7 +29,7 @@
|
||||
; VOID
|
||||
; );
|
||||
;
|
||||
CpuFlushTlb
|
||||
CpuFlushTlb
|
||||
MOV r0,#0
|
||||
MCR p15,0,r0,c8,c5,0 ;Invalidate all the unlocked entried in TLB
|
||||
BX LR
|
||||
|
@@ -1,4 +1,4 @@
|
||||
#------------------------------------------------------------------------------
|
||||
#------------------------------------------------------------------------------
|
||||
#
|
||||
# CpuSleep() for ARMv7
|
||||
#
|
||||
@@ -8,7 +8,7 @@
|
||||
#
|
||||
# But this is a no-op on ARMv7
|
||||
#
|
||||
# Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
# Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
|
@@ -1,4 +1,4 @@
|
||||
;------------------------------------------------------------------------------
|
||||
;------------------------------------------------------------------------------
|
||||
;
|
||||
; CpuSleep() for ARMv7
|
||||
;
|
||||
@@ -8,7 +8,7 @@
|
||||
;
|
||||
; But this is a no-op on ARMv7
|
||||
;
|
||||
; Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
||||
; Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
; Portions copyright (c) 2008 - 2011, Apple Inc. All rights reserved.<BR>
|
||||
; This program and the accompanying materials
|
||||
; are licensed and made available under the terms and conditions of the BSD License
|
||||
|
@@ -25,7 +25,7 @@
|
||||
FILE_GUID = 4FBD2538-249C-4b50-8F4A-A9E66609CBF6
|
||||
MODULE_TYPE = BASE
|
||||
VERSION_STRING = 1.0
|
||||
LIBRARY_CLASS = CpuLib
|
||||
LIBRARY_CLASS = CpuLib
|
||||
|
||||
|
||||
#
|
||||
@@ -33,23 +33,23 @@
|
||||
#
|
||||
|
||||
[Sources.IA32]
|
||||
Ia32/CpuSleep.c | MSFT
|
||||
Ia32/CpuFlushTlb.c | MSFT
|
||||
Ia32/CpuSleep.c | MSFT
|
||||
Ia32/CpuFlushTlb.c | MSFT
|
||||
|
||||
Ia32/CpuSleep.nasm| INTEL
|
||||
Ia32/CpuFlushTlb.nasm| INTEL
|
||||
|
||||
Ia32/CpuSleepGcc.c | GCC
|
||||
Ia32/CpuFlushTlbGcc.c | GCC
|
||||
Ia32/CpuSleepGcc.c | GCC
|
||||
Ia32/CpuFlushTlbGcc.c | GCC
|
||||
|
||||
[Sources.X64]
|
||||
X64/CpuFlushTlb.nasm
|
||||
X64/CpuSleep.nasm
|
||||
|
||||
X64/CpuSleep.nasm| GCC
|
||||
X64/CpuSleep.S | GCC
|
||||
X64/CpuSleep.S | GCC
|
||||
X64/CpuFlushTlb.nasm| GCC
|
||||
X64/CpuFlushTlb.S | GCC
|
||||
X64/CpuFlushTlb.S | GCC
|
||||
|
||||
[Sources.IPF]
|
||||
Ipf/CpuFlushTlb.s
|
||||
@@ -60,11 +60,11 @@
|
||||
|
||||
[Sources.ARM]
|
||||
Arm/CpuFlushTlb.asm | RVCT
|
||||
Arm/CpuSleep.asm | RVCT
|
||||
Arm/CpuSleep.asm | RVCT
|
||||
Arm/CpuFlushTlb.asm | MSFT
|
||||
Arm/CpuSleep.asm | MSFT
|
||||
Arm/CpuFlushTlb.S | GCC
|
||||
Arm/CpuSleep.S | GCC
|
||||
Arm/CpuSleep.S | GCC
|
||||
|
||||
[Sources.AARCH64]
|
||||
AArch64/CpuFlushTlb.S | GCC
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#------------------------------------------------------------------------------
|
||||
# Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
||||
#------------------------------------------------------------------------------
|
||||
# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
|
Reference in New Issue
Block a user