Fixed issue with return statement

Related-To: NEO-5577

Signed-off-by: Slawomir Milczarek <slawomir.milczarek@intel.com>
This commit is contained in:
Slawomir Milczarek
2021-03-05 09:11:11 +00:00
committed by Compute-Runtime-Automation
parent 2a4f00fd5e
commit bfd9aba350

View File

@@ -682,7 +682,7 @@ void AUBCommandStreamReceiverHw<GfxFamily>::writeMMIO(uint32_t offset, uint32_t
auto streamLocked = getAubStream()->lockStream();
if (hardwareContextController) {
return hardwareContextController->writeMMIO(offset, value);
hardwareContextController->writeMMIO(offset, value);
}
}