Changeset 99404 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/EmbeddedPkg/Library/TemplateRealTimeClockLib/RealTimeClockLib.c
- Timestamp:
- Apr 14, 2023 3:17:44 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156854
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-145445 /vendor/edk2/current 103735-103757,103769-103776,129194-156846
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/EmbeddedPkg/Library/TemplateRealTimeClockLib/RealTimeClockLib.c
r85718 r99404 15 15 #include <Library/IoLib.h> 16 16 #include <Library/RealTimeClockLib.h> 17 18 17 19 18 /** … … 43 42 } 44 43 45 46 44 /** 47 45 Sets the current local time and date information. … … 51 49 @retval EFI_SUCCESS The operation completed successfully. 52 50 @retval EFI_INVALID_PARAMETER A time field is out of range. 53 @retval EFI_DEVICE_ERROR The time could not be set due dueto hardware error.51 @retval EFI_DEVICE_ERROR The time could not be set due to hardware error. 54 52 55 53 **/ … … 57 55 EFIAPI 58 56 LibSetTime ( 59 IN EFI_TIME 57 IN EFI_TIME *Time 60 58 ) 61 59 { … … 65 63 return EFI_DEVICE_ERROR; 66 64 } 67 68 65 69 66 /** … … 82 79 EFIAPI 83 80 LibGetWakeupTime ( 84 OUT BOOLEAN 85 OUT BOOLEAN 86 OUT EFI_TIME 81 OUT BOOLEAN *Enabled, 82 OUT BOOLEAN *Pending, 83 OUT EFI_TIME *Time 87 84 ) 88 85 { … … 90 87 return EFI_UNSUPPORTED; 91 88 } 92 93 89 94 90 /** … … 108 104 EFIAPI 109 105 LibSetWakeupTime ( 110 IN BOOLEAN 111 OUT EFI_TIME 106 IN BOOLEAN Enabled, 107 OUT EFI_TIME *Time 112 108 ) 113 109 { … … 115 111 return EFI_UNSUPPORTED; 116 112 } 117 118 119 113 120 114 /** … … 131 125 EFIAPI 132 126 LibRtcInitialize ( 133 IN EFI_HANDLE 134 IN EFI_SYSTEM_TABLE 127 IN EFI_HANDLE ImageHandle, 128 IN EFI_SYSTEM_TABLE *SystemTable 135 129 ) 136 130 { … … 140 134 return EFI_SUCCESS; 141 135 } 142 143 136 144 137 /** … … 153 146 EFIAPI 154 147 LibRtcVirtualNotifyEvent ( 155 IN EFI_EVENT 156 IN VOID 148 IN EFI_EVENT Event, 149 IN VOID *Context 157 150 ) 158 151 { … … 165 158 return; 166 159 } 167 168 169
Note:
See TracChangeset
for help on using the changeset viewer.