2018-01-09 21:08:34 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
2018-01-09 21:08:34 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-01-09 21:08:34 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/sku_info/operations/windows/sku_info_receiver.h"
|
2018-01-09 21:08:34 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2021-06-05 18:09:29 +08:00
|
|
|
void SkuInfoReceiver::receiveFtrTableFromAdapterInfo(FeatureTable *ftrTable, ADAPTER_INFO_KMD *adapterInfo) {
|
2018-01-09 21:08:34 +08:00
|
|
|
receiveFtrTableFromAdapterInfoBase(ftrTable, adapterInfo);
|
|
|
|
}
|
|
|
|
|
2021-06-05 18:09:29 +08:00
|
|
|
void SkuInfoReceiver::receiveWaTableFromAdapterInfo(WorkaroundTable *workaroundTable, ADAPTER_INFO_KMD *adapterInfo) {
|
2019-05-08 22:00:24 +08:00
|
|
|
receiveWaTableFromAdapterInfoBase(workaroundTable, adapterInfo);
|
2018-01-09 21:08:34 +08:00
|
|
|
}
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|