diff options
| author | m00nbsd <42475391+m00nbsd@users.noreply.github.com> | 2020-06-13 12:10:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-13 12:10:16 +0200 |
| commit | dbce178a0e6997a799ba38247059dcb8213f4572 (patch) | |
| tree | 44c8bf22f223f1a9f2d3f37012fdbf0d9bb0a624 /pkg/host | |
| parent | 205b2ba41849749529bce61d21862f8c86ed12a4 (diff) | |
sys/netbsd: support multiple vHCI buses (#1822)
Diffstat (limited to 'pkg/host')
| -rw-r--r-- | pkg/host/host_netbsd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/host/host_netbsd.go b/pkg/host/host_netbsd.go index dffdec5d7..aa0a6e88a 100644 --- a/pkg/host/host_netbsd.go +++ b/pkg/host/host_netbsd.go @@ -27,7 +27,7 @@ func init() { } func checkUSBEmulation() string { - if err := osutil.IsAccessible("/dev/vhci"); err != nil { + if err := osutil.IsAccessible("/dev/vhci0"); err != nil { return err.Error() } return "" |
