Files
compute-runtime/shared/source/os_interface/linux/ioctl_strings_upstream.cpp
Mateusz Jablonski b3814e41b4 Create enum for Ioctl request values
Related-To: NEO-6852
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2022-05-27 13:22:59 +02:00

19 lines
299 B
C++

/*
* Copyright (C) 2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include <string>
namespace NEO {
namespace IoctlToStringHelper {
std::string getIoctlParamStringRemaining(int param) {
return std::to_string(param);
}
} // namespace IoctlToStringHelper
} // namespace NEO