2022-01-31 19:04:31 +08:00
|
|
|
/*
|
2024-12-18 17:45:58 +08:00
|
|
|
* Copyright (C) 2022-2024 Intel Corporation
|
2022-01-31 19:04:31 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shared/source/os_interface/linux/ioctl_helper.h"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace NEO {
|
2022-01-21 20:39:11 +08:00
|
|
|
|
2023-01-09 19:24:53 +08:00
|
|
|
std::unique_ptr<IoctlHelper> IoctlHelper::getI915Helper(const PRODUCT_FAMILY productFamily, const std::string &prelimVersion, Drm &drm) {
|
2022-06-29 20:16:35 +08:00
|
|
|
return std::make_unique<IoctlHelperUpstream>(drm);
|
2022-02-01 23:42:53 +08:00
|
|
|
}
|
2022-01-31 19:04:31 +08:00
|
|
|
|
|
|
|
} // namespace NEO
|