Files
compute-runtime/level_zero/sysman/source/ecc/linux/sysman_os_ecc.cpp
shubham kumar 501c8e87d7 fix: rename files under sysman to make them unique
Related-To: LOCI-4383

Signed-off-by: shubham kumar <shubham.kumar@intel.com>
2023-05-30 10:23:15 +02:00

22 lines
525 B
C++

/*
* Copyright (C) 2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "level_zero/sysman/source/ecc/sysman_ecc_imp.h"
#include "level_zero/sysman/source/linux/zes_os_sysman_imp.h"
namespace L0 {
namespace Sysman {
class LinuxSysmanImp;
class FirmwareUtil;
FirmwareUtil *EccImp::getFirmwareUtilInterface(OsSysman *pOsSysman) {
LinuxSysmanImp *pLinuxSysmanImp = static_cast<LinuxSysmanImp *>(pOsSysman);
return pLinuxSysmanImp->getFwUtilInterface();
}
} // namespace Sysman
} // namespace L0