refactor: unify automotive sku device-id location
Related-To: NEO-12234 Signed-off-by: Michał Pryba <michal.pryba@intel.com>
This commit is contained in:
parent
0a8e701063
commit
efa61ff069
|
@ -1,30 +0,0 @@
|
|||
/*
|
||||
* Copyright (C) 2024-2025 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace NEO {
|
||||
const std::vector<unsigned short> dg2G10DeviceIds{
|
||||
0x4F80,
|
||||
0x4F81,
|
||||
0x4F82,
|
||||
0x4F83,
|
||||
0x4F84,
|
||||
0x5690,
|
||||
0x5691,
|
||||
0x5692,
|
||||
0x56A0,
|
||||
0x56A1,
|
||||
0x56A2,
|
||||
0x56C0,
|
||||
0x56C2,
|
||||
0x56BE,
|
||||
0x56BF,
|
||||
0x56AF};
|
||||
} // namespace NEO
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2022-2024 Intel Corporation
|
||||
* Copyright (C) 2022-2025 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -7,11 +7,27 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "device_ids_configs_dg2_g10.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace NEO {
|
||||
const std::vector<unsigned short> dg2G10DeviceIds{
|
||||
0x4F80,
|
||||
0x4F81,
|
||||
0x4F82,
|
||||
0x4F83,
|
||||
0x4F84,
|
||||
0x5690,
|
||||
0x5691,
|
||||
0x5692,
|
||||
0x56A0,
|
||||
0x56A1,
|
||||
0x56A2,
|
||||
0x56C0,
|
||||
0x56C2,
|
||||
0x56BE,
|
||||
0x56BF,
|
||||
0x56AF};
|
||||
|
||||
const std::vector<unsigned short> dg2G11DeviceIds{
|
||||
0x4F87,
|
||||
0x4F88,
|
||||
|
|
Loading…
Reference in New Issue