[wip] disable phys2bus/bus2phys for testing

This commit is contained in:
Berkus Decker 2019-03-10 10:04:36 +02:00
parent d588405d28
commit b4871d52f3
1 changed files with 2 additions and 2 deletions

View File

@ -194,7 +194,7 @@ pub mod alpha_mode {
fn write(regs: &RegisterBlock, buf_ptr: u32, channel: u32) -> Result<()> {
let mut count: u32 = 0;
let buf_ptr = BcmHost::phys2bus(buf_ptr);
// let buf_ptr = BcmHost::phys2bus(buf_ptr);
println!("Mailbox::write {:x}/{:x}", buf_ptr, channel);
@ -308,7 +308,7 @@ impl Mailbox {
pub fn read(&self, channel: u32) -> Result<()> {
read(
self,
BcmHost::phys2bus(self.buffer.as_ptr() as u32),
/*BcmHost::phys2bus*/ (self.buffer.as_ptr() as u32),
channel,
)?;