2020-02-06 00:43:02 +08:00
|
|
|
/*
|
2023-02-14 23:03:52 +08:00
|
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
2020-02-06 00:43:02 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/os_interface/linux/hw_device_id.h"
|
|
|
|
#include "shared/source/os_interface/linux/sys_calls.h"
|
2020-02-06 00:43:02 +08:00
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
2021-05-25 01:34:55 +08:00
|
|
|
HwDeviceIdDrm::~HwDeviceIdDrm() {
|
2023-03-01 17:29:12 +08:00
|
|
|
SysCalls::close(fileDescriptor);
|
2020-02-06 00:43:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace NEO
|