nusb: fix spelling, sorry

This commit is contained in:
cinap_lenrek 2014-06-28 19:55:14 +02:00
parent 7d9339f75e
commit 4ad63a4c56
6 changed files with 7 additions and 7 deletions

View file

@ -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 {

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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 */
};
/*

View file

@ -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);