Skip to content
Snippets Groups Projects
Commit 3dbdc529 authored by John Hodge's avatar John Hodge
Browse files

Kernel Core - (minor) Commented-out logging in IO bindings

parent cc84c762
Branches
No related merge requests found
......@@ -337,6 +337,7 @@ impl IOBinding
#[inline]
pub unsafe fn write_16(&self, ofs: usize, val: u16)
{
//log_trace!("write_16({:?}, {:#x}, {:#02x})", self, ofs, val);
match *self
{
IOBinding::IO(base, s) => {
......@@ -352,6 +353,7 @@ impl IOBinding
#[inline]
pub unsafe fn write_32(&self, ofs: usize, val: u32)
{
//log_trace!("write_32({:?}, {:#x}, {:#02x})", self, ofs, val);
match *self
{
IOBinding::IO(base, s) => {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment