diff --git a/Include/Library/OcConfigurationLib.h b/Include/Library/OcConfigurationLib.h index 92b1905d..6bc62887 100644 --- a/Include/Library/OcConfigurationLib.h +++ b/Include/Library/OcConfigurationLib.h @@ -284,7 +284,7 @@ _(UINT64 , InitialTSC , , 0 , () ) \ _(UINT64 , FSBFrequency , , 0 , () ) \ _(UINT64 , ARTFrequency , , 0 , () ) \ - _(UINT8 , DevicePathsSupported, [1] , {0} , () ) \ + _(UINT32 , DevicePathsSupported, , 0 , () ) \ _(UINT8 , SmcRevision , [6] , {0} , () ) \ _(UINT8 , SmcBranch , [8] , {0} , () ) \ _(UINT8 , SmcPlatform , [8] , {0} , () ) diff --git a/Include/Library/OcDataHubLib.h b/Include/Library/OcDataHubLib.h index ef6a7c60..a6cc7cdd 100644 --- a/Include/Library/OcDataHubLib.h +++ b/Include/Library/OcDataHubLib.h @@ -53,7 +53,7 @@ typedef struct { CONST UINT64 *InitialTSC; CONST UINT64 *FSBFrequency; CONST UINT64 *ARTFrequency; - CONST UINT8 *DevicePathsSupported; + CONST UINT32 *DevicePathsSupported; CONST UINT8 *SmcRevision; CONST UINT8 *SmcBranch; CONST UINT8 *SmcPlatform; diff --git a/Library/OcConfigurationLib/OcConfigurationLib.c b/Library/OcConfigurationLib/OcConfigurationLib.c index fbe14e4c..c491b83f 100644 --- a/Library/OcConfigurationLib/OcConfigurationLib.c +++ b/Library/OcConfigurationLib/OcConfigurationLib.c @@ -312,7 +312,7 @@ mPlatformConfigurationDataHubSchema[] = { OC_SCHEMA_INTEGER_IN ("ARTFrequency", OC_GLOBAL_CONFIG, PlatformInfo.DataHub.ARTFrequency), OC_SCHEMA_STRING_IN ("BoardProduct", OC_GLOBAL_CONFIG, PlatformInfo.DataHub.BoardProduct), OC_SCHEMA_DATAF_IN ("BoardRevision", OC_GLOBAL_CONFIG, PlatformInfo.DataHub.BoardRevision), - OC_SCHEMA_DATAF_IN ("DevicePathsSupported", OC_GLOBAL_CONFIG, PlatformInfo.DataHub.DevicePathsSupported), + OC_SCHEMA_INTEGER_IN ("DevicePathsSupported", OC_GLOBAL_CONFIG, PlatformInfo.DataHub.DevicePathsSupported), OC_SCHEMA_INTEGER_IN ("FSBFrequency", OC_GLOBAL_CONFIG, PlatformInfo.DataHub.FSBFrequency), OC_SCHEMA_INTEGER_IN ("InitialTSC", OC_GLOBAL_CONFIG, PlatformInfo.DataHub.InitialTSC), OC_SCHEMA_STRING_IN ("PlatformName", OC_GLOBAL_CONFIG, PlatformInfo.DataHub.PlatformName),