refactor: correct typo enable product helper

Related-To: NEO-7703
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk 2023-03-08 09:07:47 +00:00 committed by Compute-Runtime-Automation
parent 01db7df52b
commit 648c45cbb7
20 changed files with 21 additions and 21 deletions

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_ELKHARTLAKE> enableEHL;
static EnableProductHelper<IGFX_ELKHARTLAKE> enableEHL;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_ICELAKE_LP> enableICLLP;
static EnableProductHelper<IGFX_ICELAKE_LP> enableICLLP;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_LAKEFIELD> enableLKF;
static EnableProductHelper<IGFX_LAKEFIELD> enableLKF;
} // namespace NEO

View File

@ -12,6 +12,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_ALDERLAKE_N> enableADLN;
static EnableProductHelper<IGFX_ALDERLAKE_N> enableADLN;
} // namespace NEO

View File

@ -12,6 +12,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_ALDERLAKE_P> enableADLP;
static EnableProductHelper<IGFX_ALDERLAKE_P> enableADLP;
} // namespace NEO

View File

@ -12,6 +12,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_ALDERLAKE_S> enableADLS;
static EnableProductHelper<IGFX_ALDERLAKE_S> enableADLS;
} // namespace NEO

View File

@ -12,6 +12,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_DG1> enableDG1;
static EnableProductHelper<IGFX_DG1> enableDG1;
} // namespace NEO

View File

@ -12,6 +12,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_ROCKETLAKE> enableRKL;
static EnableProductHelper<IGFX_ROCKETLAKE> enableRKL;
} // namespace NEO

View File

@ -12,6 +12,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_TIGERLAKE_LP> enableTGLLP;
static EnableProductHelper<IGFX_TIGERLAKE_LP> enableTGLLP;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_BROADWELL> enableBDW;
static EnableProductHelper<IGFX_BROADWELL> enableBDW;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_BROXTON> enableBXT;
static EnableProductHelper<IGFX_BROXTON> enableBXT;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_COFFEELAKE> enableCFL;
static EnableProductHelper<IGFX_COFFEELAKE> enableCFL;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_GEMINILAKE> enableGLK;
static EnableProductHelper<IGFX_GEMINILAKE> enableGLK;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_KABYLAKE> enableKBL;
static EnableProductHelper<IGFX_KABYLAKE> enableKBL;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_SKYLAKE> enableSKL;
static EnableProductHelper<IGFX_SKYLAKE> enableSKL;
} // namespace NEO

View File

@ -176,11 +176,11 @@ class ProductHelperHw : public ProductHelper {
};
template <PRODUCT_FAMILY gfxProduct>
struct EnableProductProductHelper {
struct EnableProductHelper {
using GfxProduct = typename HwMapper<gfxProduct>::GfxProduct;
EnableProductProductHelper() {
EnableProductHelper() {
auto productHelperCreateFunction = ProductHelperHw<gfxProduct>::create;
productHelperFactory[gfxProduct] = productHelperCreateFunction;
}

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_XE_HP_SDV> enableXEHP;
static EnableProductHelper<IGFX_XE_HP_SDV> enableXEHP;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_PVC> enablePVC;
static EnableProductHelper<IGFX_PVC> enablePVC;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_DG2> enableDG2;
static EnableProductHelper<IGFX_DG2> enableDG2;
} // namespace NEO

View File

@ -11,6 +11,6 @@
namespace NEO {
static EnableProductProductHelper<IGFX_METEORLAKE> enableMTL;
static EnableProductHelper<IGFX_METEORLAKE> enableMTL;
} // namespace NEO