blob: ea24cfb34e61ccf8dd807b056ed859f501b03b77 [file] [log] [blame]
Francis Murtagh11f99b42019-08-16 11:28:52 +01001//
Jim Flynnbbfe6032020-07-20 16:57:44 +01002// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
Francis Murtagh11f99b42019-08-16 11:28:52 +01003// SPDX-License-Identifier: MIT
4//
5
6#include "CommandHandlerFunctor.hpp"
7
Jim Flynnbbfe6032020-07-20 16:57:44 +01008namespace arm
Aron Virginas-Tare898db92019-08-22 12:56:34 +01009{
10
Jim Flynnbbfe6032020-07-20 16:57:44 +010011namespace pipe
Aron Virginas-Tare898db92019-08-22 12:56:34 +010012{
13
Jim Flynn397043f2019-10-17 17:37:10 +010014uint32_t CommandHandlerFunctor::GetFamilyId() const
15{
16 return m_FamilyId;
17}
18
Francis Murtagh11f99b42019-08-16 11:28:52 +010019uint32_t CommandHandlerFunctor::GetPacketId() const
20{
21 return m_PacketId;
22}
23
24uint32_t CommandHandlerFunctor::GetVersion() const
25{
26 return m_Version;
Aron Virginas-Tare898db92019-08-22 12:56:34 +010027}
28
Jim Flynnbbfe6032020-07-20 16:57:44 +010029} // namespace pipe
Aron Virginas-Tare898db92019-08-22 12:56:34 +010030
Jim Flynnbbfe6032020-07-20 16:57:44 +010031} // namespace arm