Revert "Misc fixes for dsiwifi BMI stage (#1216)"

This reverts commit a54b076b06.
This commit is contained in:
Nadia Holmquist Pedersen
2021-10-02 13:57:52 +02:00
parent b7992cc084
commit b92622b765
3 changed files with 1 additions and 70 deletions

View File

@ -95,20 +95,6 @@ private:
Mailbox[n].Write(val & 0xFF);
}
u32 MB_Peek32(int n)
{
return MB_Peek32(n, 0);
}
u32 MB_Peek32(int n, int offs)
{
u32 ret = Mailbox[n].Peek(offs+0);
ret |= (Mailbox[n].Peek(offs+1) << 8);
ret |= (Mailbox[n].Peek(offs+2) << 16);
ret |= (Mailbox[n].Peek(offs+3) << 24);
return ret;
}
u32 MB_Read32(int n)
{
u32 ret = Mailbox[n].Read();