refactor: correct naming of enum class constants 9/n

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-19 07:40:17 +00:00
committed by Compute-Runtime-Automation
parent c612a86d28
commit a6458433dc
78 changed files with 712 additions and 712 deletions

View File

@@ -105,9 +105,9 @@ void BcsSplit::releaseResources() {
}
std::vector<CommandQueue *> &BcsSplit::getCmdQsForSplit(NEO::TransferDirection direction) {
if (direction == NEO::TransferDirection::HostToLocal) {
if (direction == NEO::TransferDirection::hostToLocal) {
return this->h2dCmdQs;
} else if (direction == NEO::TransferDirection::LocalToHost) {
} else if (direction == NEO::TransferDirection::localToHost) {
return this->d2hCmdQs;
}