summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-06-28 19:55:14 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2014-06-28 19:55:14 +0200
commit4ad63a4c561b2eb4c759da5f29648a499c659c9e (patch)
tree259f5c0db529e335da380d74650bdb8df6cb55fe
parent7d9339f75e21ccfaae85b8d460748412831d1e4d (diff)
downloadplan9front-4ad63a4c561b2eb4c759da5f29648a499c659c9e.tar.xz
nusb: fix spelling, sorry
-rw-r--r--sys/man/2/nusb2
-rw-r--r--sys/man/4/nusb4
-rw-r--r--sys/man/8/nusbrc2
-rw-r--r--sys/man/8/plan9.ini2
-rw-r--r--sys/src/cmd/nusb/lib/usb.h2
-rw-r--r--sys/src/cmd/nusb/usbd/usbd.c2
6 files changed, 7 insertions, 7 deletions
diff --git a/sys/man/2/nusb b/sys/man/2/nusb
index 681a76fbf..9a2d7c946 100644
--- a/sys/man/2/nusb
+++ b/sys/man/2/nusb
@@ -28,7 +28,7 @@ struct Dev {
Usbdev* usb; /* USB description */
void* aux; /* for the device driver */
void (*free)(void*); /* idem. to release aux */
- char* hname; /* hash name, uniqueue for device */
+ char* hname; /* hash name, unique for device */
};
.sp 0.3v
struct Usbdev {
diff --git a/sys/man/4/nusb b/sys/man/4/nusb
index fc5d16e42..bfc3ecf1a 100644
--- a/sys/man/4/nusb
+++ b/sys/man/4/nusb
@@ -111,7 +111,7 @@ are formatted as 4 digit hexadecimal.
is the device class, subclass, protocol indentifier
formatd as 6 digit hexadecimal.
.I Usbd
-assigns a stable device uniqueue name based on the
+assigns a stable device unique name based on the
device descriptor for
.I hname .
This information is read by
@@ -142,7 +142,7 @@ provides a file system (usually seen under
.BR /dev )
that includes one directory per storage device, named
.BI sdU N [. M ]
-in correspondence with the usb device uniqueue name
+in correspondence with the usb device unique name
and the storage unit number (or LUN). The LUN is omited
for single lun devices.
.PP
diff --git a/sys/man/8/nusbrc b/sys/man/8/nusbrc
index b6c5e5814..a82cad8c3 100644
--- a/sys/man/8/nusbrc
+++ b/sys/man/8/nusbrc
@@ -28,7 +28,7 @@ Usb devices appear as files under
.B /dev
and
.B /shr
-identified by the devices uniqueue name assigned by usbd.
+identified by the devices unique name assigned by usbd.
When the environment variable
.I nousbhname
is defined, devies are named by ther dynamically assigned
diff --git a/sys/man/8/plan9.ini b/sys/man/8/plan9.ini
index 6d936f86b..09436d9b6 100644
--- a/sys/man/8/plan9.ini
+++ b/sys/man/8/plan9.ini
@@ -816,7 +816,7 @@ USB devices taking a long time to come online.
When defined,
.IR nusbrc (8)
will use the dynamically assigned usb device address to name
-usb devices instead of the device uniqueue name.
+usb devices instead of the device unique name.
.SS VIDEO
.SS \fLmonitor=\fIvalue\fP
.SS \fLvgasize=\fIvalue\fP
diff --git a/sys/src/cmd/nusb/lib/usb.h b/sys/src/cmd/nusb/lib/usb.h
index 9f47fe116..085d75de3 100644
--- a/sys/src/cmd/nusb/lib/usb.h
+++ b/sys/src/cmd/nusb/lib/usb.h
@@ -174,7 +174,7 @@ struct Dev
Usbdev* usb; /* USB description */
void* aux; /* for the device driver */
void (*free)(void*); /* idem. to release aux */
- char* hname; /* hash name, uniqueue for device */
+ char* hname; /* hash name, unique for device */
};
/*
diff --git a/sys/src/cmd/nusb/usbd/usbd.c b/sys/src/cmd/nusb/usbd/usbd.c
index 644c16261..ef5396e49 100644
--- a/sys/src/cmd/nusb/usbd/usbd.c
+++ b/sys/src/cmd/nusb/usbd/usbd.c
@@ -348,7 +348,7 @@ assignhname(Dev *dev)
ud = dev->usb;
- /* build string of device uniqueue stuff */
+ /* build string of device unique stuff */
snprint(buf, sizeof(buf), "%.4x%.4x%.4x%.6lx%s",
ud->vid, ud->did, ud->dno, ud->csp, ud->serial);