arch_mailbox: Stub out virtual Read/Write functions

* Nice catch mmu_man!

Change-Id: I92a00ec5c66313107e586f7b3ee8a1fa5021b2be
This commit is contained in:
Alexander von Gluck IV
2018-11-01 21:31:56 -05:00
parent c52d856e2d
commit bdcc7b74fc
+2 -2
View File
@@ -37,8 +37,8 @@ public:
virtual addr_t Base() { return fBase; };
addr_t PhysicalBase() { return fPhysicalBase; };
virtual status_t Write(uint8 channel, uint32 value);
virtual status_t Read(uint8 channel, uint32& value);
virtual status_t Write(uint8 channel, uint32 value) { return B_OK; };
virtual status_t Read(uint8 channel, uint32& value) { return B_OK; };
protected: