mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
18 lines
317 B
C++
18 lines
317 B
C++
/*
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/linux/hw_device_id.h"
|
|
#include "shared/source/os_interface/linux/sys_calls.h"
|
|
|
|
namespace NEO {
|
|
|
|
HwDeviceIdDrm::~HwDeviceIdDrm() {
|
|
SysCalls::close(fileDescriptor);
|
|
}
|
|
|
|
} // namespace NEO
|