summaryrefslogtreecommitdiff
path: root/EmulatorPkg/Library/EmuBdsLib
diff options
context:
space:
mode:
authorjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2011-06-28 16:50:26 +0000
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2011-06-28 16:50:26 +0000
commitd18d8a1d0e370f8ce6ccc2725f4170586d457e53 (patch)
tree7e852b6f4c4277a38734d09870eae180a113b7e9 /EmulatorPkg/Library/EmuBdsLib
parentbb89ec1a7ec2f8d35033df9e47b3604925da3bd3 (diff)
downloadedk2-platforms-d18d8a1d0e370f8ce6ccc2725f4170586d457e53.tar.xz
EmulatorPkg: Remove all trailing whitespace
Signed-off-by: jljusten git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11919 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EmulatorPkg/Library/EmuBdsLib')
-rw-r--r--EmulatorPkg/Library/EmuBdsLib/BdsPlatform.c70
-rw-r--r--EmulatorPkg/Library/EmuBdsLib/BdsPlatform.h14
-rw-r--r--EmulatorPkg/Library/EmuBdsLib/EmuBdsLib.inf6
-rw-r--r--EmulatorPkg/Library/EmuBdsLib/PlatformData.c14
4 files changed, 52 insertions, 52 deletions
diff --git a/EmulatorPkg/Library/EmuBdsLib/BdsPlatform.c b/EmulatorPkg/Library/EmuBdsLib/BdsPlatform.c
index 8f47ef9125..46d2a7ee03 100644
--- a/EmulatorPkg/Library/EmuBdsLib/BdsPlatform.c
+++ b/EmulatorPkg/Library/EmuBdsLib/BdsPlatform.c
@@ -2,13 +2,13 @@
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
Portions copyright (c) 2011, Apple Inc. All rights reserved.
-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
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+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
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
@@ -93,14 +93,14 @@ Routine Description:
Arguments:
PlatformConsole - Predfined platform default console device array.
-
+
Returns:
- EFI_SUCCESS - Success connect at least one ConIn and ConOut
- device, there must have one ConOut device is
+ EFI_SUCCESS - Success connect at least one ConIn and ConOut
+ device, there must have one ConOut device is
active vga device.
-
- EFI_STATUS - Return the status of
+
+ EFI_STATUS - Return the status of
BdsLibConnectAllDefaultConsoles ()
**/
@@ -149,17 +149,17 @@ PlatformBdsConnectSequence (
Routine Description:
- Connect with predeined platform connect sequence,
+ Connect with predeined platform connect sequence,
the OEM/IBV can customize with their own connect sequence.
-
+
Arguments:
None.
-
+
Returns:
None.
-
+
**/
{
UINTN Index;
@@ -195,15 +195,15 @@ Routine Description:
Load the predefined driver option, OEM/IBV can customize this
to load their own drivers
-
+
Arguments:
BdsDriverLists - The header of the driver option link list.
-
+
Returns:
None.
-
+
**/
{
UINTN Index;
@@ -235,19 +235,19 @@ Routine Description:
Perform the platform diagnostic, such like test memory. OEM/IBV also
can customize this fuction to support specific platform diagnostic.
-
+
Arguments:
MemoryTestLevel - The memory test intensive level
-
+
QuietBoot - Indicate if need to enable the quiet boot
BaseMemoryTest - A pointer to BdsMemoryTest()
-
+
Returns:
None.
-
+
**/
{
EFI_STATUS Status;
@@ -291,11 +291,11 @@ Routine Description:
The function will excute with as the platform policy, current policy
is driven by boot mode. IBV/OEM can customize this code for their specific
policy action.
-
+
Arguments:
DriverOptionList - The header of the driver option link list
-
+
BootOptionList - The header of the boot option link list
ProcessCapsules - A pointer to ProcessCapsules()
@@ -305,7 +305,7 @@ Arguments:
Returns:
None.
-
+
**/
{
EFI_STATUS Status;
@@ -431,7 +431,7 @@ PlatformBdsBootSuccess (
/*++
Routine Description:
-
+
Hook point after a boot attempt succeeds. We don't expect a boot option to
return, so the EFI 1.0 specification defines that you will default to an
interactive mode and stop processing the BootOrder list in this case. This
@@ -442,7 +442,7 @@ Arguments:
Option - Pointer to Boot Option that succeeded to boot.
Returns:
-
+
None.
**/
@@ -471,11 +471,11 @@ PlatformBdsBootFail (
/*++
Routine Description:
-
+
Hook point after a boot attempt fails.
Arguments:
-
+
Option - Pointer to Boot Option that failed to boot.
Status - Status returned from failed boot.
@@ -485,7 +485,7 @@ Arguments:
ExitDataSize - Exit data size returned from failed boot.
Returns:
-
+
None.
**/
@@ -510,16 +510,16 @@ PlatformBdsNoConsoleAction (
/*++
Routine Description:
-
+
This function is remained for IBV/OEM to do some platform action,
if there no console device can be connected.
Arguments:
-
+
None.
-
+
Returns:
-
+
EFI_SUCCESS - Direct return success now.
**/
diff --git a/EmulatorPkg/Library/EmuBdsLib/BdsPlatform.h b/EmulatorPkg/Library/EmuBdsLib/BdsPlatform.h
index a76ec2e4bd..cf2bb3e81c 100644
--- a/EmulatorPkg/Library/EmuBdsLib/BdsPlatform.h
+++ b/EmulatorPkg/Library/EmuBdsLib/BdsPlatform.h
@@ -2,13 +2,13 @@
Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
Portions copyright (c) 2011, Apple Inc. All rights reserved.
-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
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+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
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
diff --git a/EmulatorPkg/Library/EmuBdsLib/EmuBdsLib.inf b/EmulatorPkg/Library/EmuBdsLib/EmuBdsLib.inf
index fecdbecbe6..1e121ee38e 100644
--- a/EmulatorPkg/Library/EmuBdsLib/EmuBdsLib.inf
+++ b/EmulatorPkg/Library/EmuBdsLib/EmuBdsLib.inf
@@ -3,7 +3,7 @@
#
# Do platform action customized by IBV/OEM.
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
-# Portions copyright (c) 2011, Apple Inc. All rights reserved.
+# Portions copyright (c) 2011, Apple Inc. All rights reserved.
#
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
@@ -21,7 +21,7 @@
FILE_GUID = 59569181-CBF8-2E44-9C3E-C2AB2F5608E1
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
- LIBRARY_CLASS = PlatformBdsLib|DXE_DRIVER
+ LIBRARY_CLASS = PlatformBdsLib|DXE_DRIVER
#
@@ -61,6 +61,6 @@
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPlatformBootTimeOut
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdLogoFile
-
+
[Depex]
gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid
diff --git a/EmulatorPkg/Library/EmuBdsLib/PlatformData.c b/EmulatorPkg/Library/EmuBdsLib/PlatformData.c
index e20099b9f0..37e35f5e06 100644
--- a/EmulatorPkg/Library/EmuBdsLib/PlatformData.c
+++ b/EmulatorPkg/Library/EmuBdsLib/PlatformData.c
@@ -2,13 +2,13 @@
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
Portions copyright (c) 2011, Apple Inc. All rights reserved.
-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
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+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
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/