mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 11:03:02 +08:00
15 lines
250 B
C++
15 lines
250 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "device/driver_info.h"
|
|
|
|
namespace NEO {
|
|
|
|
DriverInfo *DriverInfo::create(OSInterface *osInterface) {
|
|
return new DriverInfo();
|
|
};
|
|
} // namespace NEO
|