Skip to content

Commit

Permalink
Core/Dxe: Changed line ending to Windows style.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Krichanov committed Sep 2, 2024
1 parent edf576c commit c820082
Show file tree
Hide file tree
Showing 23 changed files with 7,028 additions and 7,028 deletions.
32 changes: 16 additions & 16 deletions MdeModulePkg/Core/Dxe/DxeMain.inf
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,21 @@
SysCall/SupportedProtocols.h
SysCall/SupportedProtocols.c

[Sources.IA32]
SysCall/IA32/InitializeMsr.c
SysCall/IA32/CoreBootServices.nasm

[Sources.X64]
SysCall/X64/InitializeMsr.c
SysCall/X64/CoreBootServices.nasm

[Sources.ARM]
SysCall/ARM/InitializeMsr.c
SysCall/ARM/CoreBootServices.S

[Sources.AARCH64]
SysCall/AARCH64/InitializeMsr.c
SysCall/AARCH64/CoreBootServices.S
[Sources.IA32]
SysCall/IA32/InitializeMsr.c
SysCall/IA32/CoreBootServices.nasm

[Sources.X64]
SysCall/X64/InitializeMsr.c
SysCall/X64/CoreBootServices.nasm

[Sources.ARM]
SysCall/ARM/InitializeMsr.c
SysCall/ARM/CoreBootServices.S
[Sources.AARCH64]
SysCall/AARCH64/InitializeMsr.c
SysCall/AARCH64/CoreBootServices.S

[Packages]
MdePkg/MdePkg.dec
Expand All @@ -93,7 +93,7 @@
OvmfPkg/OvmfPkg.dec
ArmPkg/ArmPkg.dec
ArmVirtPkg/ArmVirtPkg.dec

[LibraryClasses]
BaseMemoryLib
CacheMaintenanceLib
Expand Down
64 changes: 32 additions & 32 deletions MdeModulePkg/Core/Dxe/DxeRing3/AARCH64/SysCall.S
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
//------------------------------------------------------------------------------
// Copyright (c) 2024, Mikhail Krichanov. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause
//------------------------------------------------------------------------------

#include <AsmMacroIoLibV8.h>

.extern ASM_PFX(Ring3Call)

//------------------------------------------------------------------------------
// EFI_STATUS
// EFIAPI
// SysCall (
// IN UINT8 Type,
// ...
// );
//------------------------------------------------------------------------------
ASM_FUNC(SysCall)
svc #0
ret

//------------------------------------------------------------------------------
// VOID
// EFIAPI
// Ring3EntryPoint (
// IN RING3_CALL_DATA *Data
// );
//
// (x0) Data
//------------------------------------------------------------------------------
ASM_FUNC(Ring3EntryPoint)
b ASM_PFX(Ring3Call)
//------------------------------------------------------------------------------
// Copyright (c) 2024, Mikhail Krichanov. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause
//------------------------------------------------------------------------------

#include <AsmMacroIoLibV8.h>

.extern ASM_PFX(Ring3Call)

//------------------------------------------------------------------------------
// EFI_STATUS
// EFIAPI
// SysCall (
// IN UINT8 Type,
// ...
// );
//------------------------------------------------------------------------------
ASM_FUNC(SysCall)
svc #0
ret

//------------------------------------------------------------------------------
// VOID
// EFIAPI
// Ring3EntryPoint (
// IN RING3_CALL_DATA *Data
// );
//
// (x0) Data
//------------------------------------------------------------------------------
ASM_FUNC(Ring3EntryPoint)
b ASM_PFX(Ring3Call)
64 changes: 32 additions & 32 deletions MdeModulePkg/Core/Dxe/DxeRing3/ARM/SysCall.S
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
//------------------------------------------------------------------------------
// Copyright (c) 2024, Mikhail Krichanov. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause
//------------------------------------------------------------------------------

#include <AsmMacroIoLib.h>

.extern ASM_PFX(Ring3Call)

//------------------------------------------------------------------------------
// EFI_STATUS
// EFIAPI
// SysCall (
// IN UINT8 Type,
// ...
// );
//------------------------------------------------------------------------------
ASM_FUNC(SysCall)
svc #0
bx LR

//------------------------------------------------------------------------------
// VOID
// EFIAPI
// Ring3EntryPoint (
// IN RING3_CALL_DATA *Data
// );
//
// (r0) Data
//------------------------------------------------------------------------------
ASM_FUNC(Ring3EntryPoint)
b ASM_PFX(Ring3Call)
//------------------------------------------------------------------------------
// Copyright (c) 2024, Mikhail Krichanov. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause
//------------------------------------------------------------------------------

#include <AsmMacroIoLib.h>

.extern ASM_PFX(Ring3Call)

//------------------------------------------------------------------------------
// EFI_STATUS
// EFIAPI
// SysCall (
// IN UINT8 Type,
// ...
// );
//------------------------------------------------------------------------------
ASM_FUNC(SysCall)
svc #0
bx LR

//------------------------------------------------------------------------------
// VOID
// EFIAPI
// Ring3EntryPoint (
// IN RING3_CALL_DATA *Data
// );
//
// (r0) Data
//------------------------------------------------------------------------------
ASM_FUNC(Ring3EntryPoint)
b ASM_PFX(Ring3Call)
Loading

0 comments on commit c820082

Please sign in to comment.