From 0a60b6c0996772cf01524e2951db812415754352 Mon Sep 17 00:00:00 2001 From: "Milczarek, Slawomir" Date: Tue, 14 Jan 2020 10:57:55 +0100 Subject: [PATCH] Add the empty setAdditionalMmioList function to AubHelper class Related-To: NEO-2993 Change-Id: I4d91b34578aecccf37920ffdf99428993803a1c2 Signed-off-by: Milczarek, Slawomir --- runtime/aub/aub_center.cpp | 3 ++- runtime/aub/aub_helper.cpp | 5 ++++- runtime/aub/aub_helper.h | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/runtime/aub/aub_center.cpp b/runtime/aub/aub_center.cpp index 44b197b7e2..c1e9c71c02 100644 --- a/runtime/aub/aub_center.cpp +++ b/runtime/aub/aub_center.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2019 Intel Corporation + * Copyright (C) 2018-2020 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -30,6 +30,7 @@ AubCenter::AubCenter(const HardwareInfo *pHwInfo, bool localMemoryEnabled, const aubStreamMode = getAubStreamMode(aubFileName, type); + AubHelper::setAdditionalMmioList(); if (DebugManager.flags.AubDumpAddMmioRegistersList.get() != "unk") { aub_stream::injectMMIOList(AubHelper::getAdditionalMmioList()); } diff --git a/runtime/aub/aub_helper.cpp b/runtime/aub/aub_helper.cpp index 819d9063a3..01c6a7abfc 100644 --- a/runtime/aub/aub_helper.cpp +++ b/runtime/aub/aub_helper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2019 Intel Corporation + * Copyright (C) 2018-2020 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -33,4 +33,7 @@ uint64_t AubHelper::getMemBankSize(const HardwareInfo *pHwInfo) { return getTotalMemBankSize(); } +void AubHelper::setAdditionalMmioList() { +} + } // namespace NEO diff --git a/runtime/aub/aub_helper.h b/runtime/aub/aub_helper.h index 896cc01ecc..23324e69d9 100644 --- a/runtime/aub/aub_helper.h +++ b/runtime/aub/aub_helper.h @@ -42,6 +42,7 @@ class AubHelper : public NonCopyableOrMovableClass { static uint32_t getMemType(uint32_t addressSpace); static uint64_t getMemBankSize(const HardwareInfo *pHwInfo); static MMIOList getAdditionalMmioList(); + static void setAdditionalMmioList(); virtual int getDataHintForPml4Entry() const = 0; virtual int getDataHintForPdpEntry() const = 0;