Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuIo2Dxe
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.c
r48674 r58459 2 2 Produces the CPU I/O 2 Protocol. 3 3 4 Copyright (c) 2009 - 201 1, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR> 5 5 This program and the accompanying materials 6 6 are licensed and made available under the terms and conditions of the BSD License … … 117 117 // Check to see if Width is in the valid range 118 118 // 119 if ( Width < 0 ||Width >= EfiCpuIoWidthMaximum) {119 if ((UINT32)Width >= EfiCpuIoWidthMaximum) { 120 120 return EFI_INVALID_PARAMETER; 121 121 } -
trunk/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
r48674 r58459 1 1 ## @file 2 # Produces the CPU I/O 2 Protocol .2 # Produces the CPU I/O 2 Protocol by using the services of the I/O Library. 3 3 # 4 # This DXE driver produces of the CPU I/O 2 Protocol, as introduced by PI 1.2. 5 # 6 # Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR> 4 # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 7 5 # This program and the accompanying materials 8 6 # are licensed and made available under the terms and conditions of the BSD License … … 18 16 INF_VERSION = 0x00010005 19 17 BASE_NAME = CpuIo2Dxe 18 MODULE_UNI_FILE = CpuIo2Dxe.uni 20 19 FILE_GUID = A19B1FE7-C1BC-49F8-875F-54A5D542443F 21 20 MODULE_TYPE = DXE_DRIVER … … 48 47 [Depex] 49 48 TRUE 49 50 [UserExtensions.TianoCore."ExtraFiles"] 51 CpuIo2DxeExtra.uni
Note:
See TracChangeset
for help on using the changeset viewer.