Unify size of extern array

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2021-05-11 19:23:47 +00:00
committed by Compute-Runtime-Automation
parent a79f7b678b
commit 3759035b4c
7 changed files with 9 additions and 9 deletions

View File

@@ -26,7 +26,7 @@ void CommandStreamReceiverHw<Family>::programComputeMode(LinearStream &stream, D
template <>
void populateFactoryTable<CommandStreamReceiverHw<Family>>() {
extern CommandStreamReceiverCreateFunc commandStreamReceiverFactory[IGFX_MAX_CORE];
extern CommandStreamReceiverCreateFunc commandStreamReceiverFactory[2 * IGFX_MAX_CORE];
commandStreamReceiverFactory[gfxCore] = DeviceCommandStreamReceiver<Family>::create;
}