dev-arm,misc: Added missing override to scmi_platform functions
authorBobby R. Bruce <bbruce@ucdavis.edu>
Tue, 10 Nov 2020 18:30:29 +0000 (10:30 -0800)
committerBobby R. Bruce <bbruce@ucdavis.edu>
Wed, 11 Nov 2020 21:03:07 +0000 (21:03 +0000)
The missing overrides on the "raiseInterrupt" and "clearInterrupt"
resulted in compilation failures when using Clang.

Change-Id: Ic77e8587cd622f8f0cb819c3230893a1b169a2a2
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/37355
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Maintainer: Jason Lowe-Power <power.jg@gmail.com>
Tested-by: kokoro <noreply+kokoro@google.com>
src/dev/arm/css/scmi_platform.hh

index b46cfb084c52cab43fabf668f738463b1279c7e9..567e5481600863abbba678424b52cda85996578f 100644 (file)
@@ -292,8 +292,8 @@ class Platform : public Scp
 
     Port& getPort(const std::string &if_name, PortID idx) override;
 
-    void raiseInterrupt(const Doorbell *doorbell);
-    void clearInterrupt(const Doorbell *doorbell);
+    void raiseInterrupt(const Doorbell *doorbell) override;
+    void clearInterrupt(const Doorbell *doorbell) override;
 
     static uint32_t
     protocolID(const Message &msg)