X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=PcAtChipsetPkg%2FPcatRealTimeClockRuntimeDxe%2FPcRtc.c;fp=PcAtChipsetPkg%2FPcatRealTimeClockRuntimeDxe%2FPcRtc.c;h=23f8d3b56f591a5c8654317372f5b25d54dea266;hp=eb1a6567eedc85fce8e4e0a1b88ecf2f3669de2e;hb=1e5fff631b92436790c27d8f3995710aa15c9232;hpb=d47da7866989bdb276479ccd95f52196a8832c8a;ds=sidebyside diff --git a/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtc.c b/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtc.c index eb1a6567ee..23f8d3b56f 100644 --- a/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtc.c +++ b/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtc.c @@ -1,7 +1,7 @@ /** @file RTC Architectural Protocol GUID as defined in DxeCis 0.96. -Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2015, Intel Corporation. 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 @@ -955,8 +955,8 @@ RtcTimeFieldsValid ( IN EFI_TIME *Time ) { - if (Time->Year < 1998 || - Time->Year > 2099 || + if (Time->Year < PcdGet16 (PcdMinimalValidYear) || + Time->Year > PcdGet16 (PcdMaximalValidYear) || Time->Month < 1 || Time->Month > 12 || (!DayValid (Time)) ||