mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 08:53:55 +08:00
Related-To: NEO-4457 Change-Id: I427cceeee9b2804fdd047c8a6acde3ad5f85923f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
16 lines
271 B
C++
16 lines
271 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/driver_info.h"
|
|
|
|
namespace NEO {
|
|
|
|
DriverInfo *DriverInfo::create(OSInterface *osInterface) {
|
|
return new DriverInfo();
|
|
};
|
|
} // namespace NEO
|