Removing a debugging statement

This commit is contained in:
Adam Kramer 2015-03-07 19:01:39 -08:00
parent 10a90652fd
commit 07b12a1539

View File

@ -58,7 +58,6 @@ package rpio
import ( import (
"bytes" "bytes"
"encoding/binary" "encoding/binary"
"fmt"
"os" "os"
"reflect" "reflect"
"sync" "sync"
@ -329,6 +328,5 @@ func getGPIOBase() (base int64) {
if err != nil { if err != nil {
return return
} }
fmt.Printf("%X", out)
return int64(out + 0x200000) return int64(out + 0x200000)
} }