aboutsummaryrefslogtreecommitdiff
path: root/device_openbsd.go
diff options
context:
space:
mode:
Diffstat (limited to 'device_openbsd.go')
-rw-r--r--device_openbsd.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/device_openbsd.go b/device_openbsd.go
index 5d1f5f7..40ddf95 100644
--- a/device_openbsd.go
+++ b/device_openbsd.go
@@ -1,12 +1,10 @@
// note: ulpt* doesn't support read(), thus this dev is broken atm.
-// use instead ugen* by disabling ulpt at boot time
-// see config(8) for details
package robo
import "log"
func NewDevice() Device {
- dev, err := NewLP("/dev/ugen0.00")
+ dev, err := NewLP("/dev/ulpt0")
if err != nil {
log.Fatal(err)
}