mirror of https://github.com/acidanthera/audk.git
Typo corrected
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7152 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
29129ce463
commit
2d4117c049
|
@ -1,7 +1,7 @@
|
||||||
#/** @file
|
#/** @file
|
||||||
#
|
#
|
||||||
# SCSI bus driver. This driver scans all SCSI devices and creates a device handle for
|
# SCSI bus driver. This driver scans all SCSI devices and creates a device handle for
|
||||||
# each of them. After this the driver installs the Path Device Protocol and SCSI I/O Protocol on
|
# each of them. After this the driver installs the Device Path Protocol and SCSI I/O Protocol on
|
||||||
# these handles.
|
# these handles.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 - 2008, Intel Corporation. <BR>
|
# Copyright (c) 2006 - 2008, Intel Corporation. <BR>
|
||||||
|
|
|
@ -306,7 +306,7 @@ PcRtcGetTime (
|
||||||
EfiReleaseLock (&Global->RtcLock);
|
EfiReleaseLock (&Global->RtcLock);
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// Get the variable that containts the TimeZone and Daylight fields
|
// Get the variable that contains the TimeZone and Daylight fields
|
||||||
//
|
//
|
||||||
Time->TimeZone = Global->SavedTimeZone;
|
Time->TimeZone = Global->SavedTimeZone;
|
||||||
Time->Daylight = Global->Daylight;
|
Time->Daylight = Global->Daylight;
|
||||||
|
@ -431,7 +431,7 @@ PcRtcSetTime (
|
||||||
EfiReleaseLock (&Global->RtcLock);
|
EfiReleaseLock (&Global->RtcLock);
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// Set the variable that containts the TimeZone and Daylight fields
|
// Set the variable that contains the TimeZone and Daylight fields
|
||||||
//
|
//
|
||||||
Global->SavedTimeZone = Time->TimeZone;
|
Global->SavedTimeZone = Time->TimeZone;
|
||||||
Global->Daylight = Time->Daylight;
|
Global->Daylight = Time->Daylight;
|
||||||
|
@ -454,7 +454,7 @@ PcRtcSetTime (
|
||||||
Returns the current wakeup alarm clock setting.
|
Returns the current wakeup alarm clock setting.
|
||||||
|
|
||||||
@param Enabled Indicates if the alarm is currently enabled or disabled.
|
@param Enabled Indicates if the alarm is currently enabled or disabled.
|
||||||
@param Pending Indicates if the alarm signal is pending and requires acknowledgement.
|
@param Pending Indicates if the alarm signal is pending and requires acknowledgment.
|
||||||
@param Time The current alarm setting.
|
@param Time The current alarm setting.
|
||||||
@param Global For global use inside this module.
|
@param Global For global use inside this module.
|
||||||
|
|
||||||
|
@ -480,7 +480,7 @@ PcRtcGetWakeupTime (
|
||||||
UINT8 Century;
|
UINT8 Century;
|
||||||
|
|
||||||
//
|
//
|
||||||
// Check paramters for null pointers
|
// Check parameters for null pointers
|
||||||
//
|
//
|
||||||
if ((Enabled == NULL) || (Pending == NULL) || (Time == NULL)) {
|
if ((Enabled == NULL) || (Pending == NULL) || (Time == NULL)) {
|
||||||
return EFI_INVALID_PARAMETER;
|
return EFI_INVALID_PARAMETER;
|
||||||
|
@ -676,7 +676,7 @@ PcRtcSetWakeupTime (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
See if centry register of RTC is valid.
|
See if century register of RTC is valid.
|
||||||
|
|
||||||
@retval EFI_SUCCESS Century register is valid.
|
@retval EFI_SUCCESS Century register is valid.
|
||||||
@retval EFI_DEVICE_ERROR Century register is NOT valid.
|
@retval EFI_DEVICE_ERROR Century register is NOT valid.
|
||||||
|
@ -910,12 +910,12 @@ DayValid (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Check if it is a leapyear.
|
Check if it is a leap year.
|
||||||
|
|
||||||
@param Time The time to be checked.
|
@param Time The time to be checked.
|
||||||
|
|
||||||
@retval TRUE It is a leapyear.
|
@retval TRUE It is a leap year.
|
||||||
@retval FALSE It is NOT a leapyear.
|
@retval FALSE It is NOT a leap year.
|
||||||
**/
|
**/
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
IsLeapYear (
|
IsLeapYear (
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#/** @file
|
#/** @file
|
||||||
#
|
#
|
||||||
# Implement ReadOnly Variable Services required by PEIM and install
|
# Implement ReadOnly Variable Services required by PEIM and install
|
||||||
# PEI ReadOnly Varaiable2 PPI. These services operates the non volatile storage space.
|
# PEI ReadOnly Varaiable2 PPI. These services operates the non-volatile storage space.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 - 2008, Intel Corporation<BR>
|
# Copyright (c) 2006 - 2008, Intel Corporation<BR>
|
||||||
# All rights reserved. This program and the accompanying materials
|
# All rights reserved. This program and the accompanying materials
|
||||||
|
|
Loading…
Reference in New Issue