Correct pseudo misspelling in sys/ comments

contrib code and #define in intel_ata.h unchanged.
This commit is contained in:
Ed Maste 2018-02-23 18:15:50 +00:00
parent 93b9f3b114
commit 315fbaeca2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329873
13 changed files with 15 additions and 15 deletions

View file

@ -12,7 +12,7 @@
; case where the event exists, but we don't want auditing, the
; event should be #defined to AUE_NULL in audit_kevents.h.
; type one of STD, NOPROTO, UNIMPL
; name psuedo-prototype of syscall routine
; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"

View file

@ -12,7 +12,7 @@
; case where the event exists, but we don't want auditing, the
; event should be #defined to AUE_NULL in audit_kevents.h.
; type one of STD, NOPROTO, UNIMPL
; name psuedo-prototype of syscall routine
; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"

View file

@ -16,7 +16,7 @@
; COMPAT7, COMPAT11, NODEF, NOARGS, NOPROTO, NOSTD
; The COMPAT* options may be combined with one or more NO*
; options separated by '|' with no spaces (e.g. COMPAT|NOARGS)
; name psuedo-prototype of syscall routine
; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"

View file

@ -57,7 +57,7 @@ PREFIX = "ahc_"
* a later time. This problem cannot be resolved by holding a single entry
* in scratch ram since a reconnecting target can request sense and this will
* create yet another SCB waiting for selection. The solution used here is to
* use byte 27 of the SCB as a psuedo-next pointer and to thread a list
* use byte 27 of the SCB as a pseudo-next pointer and to thread a list
* of SCBs that are awaiting selection. Since 0-0xfe are valid SCB indexes,
* SCB_LIST_NULL is 0xff which is out of range. An entry is also added to
* this list every time a request sense occurs or after completing a non-tagged

View file

@ -580,7 +580,7 @@ static int setcolreg(struct drm_crtc *crtc, u16 red, u16 green,
if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
u32 *palette;
u32 value;
/* place color in psuedopalette */
/* place color in pseudopalette */
if (regno > 16)
return -EINVAL;
palette = (u32 *)info->pseudo_palette;

View file

@ -251,7 +251,7 @@ struct xbb_xen_reqlist {
uint8_t *kva;
/**
* Base, psuedo-physical address, corresponding to the start
* Base, pseudo-physical address, corresponding to the start
* of this request's kva region.
*/
uint64_t gnt_base;
@ -590,7 +590,7 @@ struct xbb_softc {
*/
vm_offset_t kva;
/** Psuedo-physical address corresponding to kva. */
/** Pseudo-physical address corresponding to kva. */
uint64_t gnt_base_addr;
/** The size of the global kva pool. */
@ -936,7 +936,7 @@ xbb_reqlist_ioaddr(struct xbb_xen_reqlist *reqlist, int pagenr, int sector)
/**
* Given a page index and 512b sector offset within that page, calculate
* an offset into the local psuedo-physical address space used to map a
* an offset into the local pseudo-physical address space used to map a
* front-end's request data into a request.
*
* \param reqlist The request list structure whose pseudo-physical region

View file

@ -491,7 +491,7 @@ struct xnb_softc {
*/
vm_offset_t kva;
/** Psuedo-physical address corresponding to kva. */
/** Pseudo-physical address corresponding to kva. */
uint64_t gnt_base_addr;
/** Various configuration and state bit flags. */

View file

@ -12,7 +12,7 @@
; case where the event exists, but we don't want auditing, the
; event should be #defined to AUE_NULL in audit_kevents.h.
; type one of STD, OBSOL, UNIMPL, COMPAT
; name psuedo-prototype of syscall routine
; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"

View file

@ -12,7 +12,7 @@
; case where the event exists, but we don't want auditing, the
; event should be #defined to AUE_NULL in audit_kevents.h.
; type one of STD, NOPROTO, UNIMPL
; name psuedo-prototype of syscall routine
; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"

View file

@ -648,7 +648,7 @@ pci_pir_probe(int bus, int require_parse)
}
/*
* The driver for the new-bus psuedo device pir0 for the $PIR table.
* The driver for the new-bus pseudo device pir0 for the $PIR table.
*/
static int

View file

@ -15,7 +15,7 @@
; COMPAT7, COMPAT11, NODEF, NOARGS, NOPROTO, NOSTD
; The COMPAT* options may be combined with one or more NO*
; options separated by '|' with no spaces (e.g. COMPAT|NOARGS)
; name psuedo-prototype of syscall routine
; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"

View file

@ -171,7 +171,7 @@ ng_atmllc_rcvdata(hook_p hook, item_p item)
padding = 0;
if (hook == priv->atm) {
/* Ditch the psuedoheader. */
/* Ditch the pseudoheader. */
hdr = mtod(m, struct atmllc *);
/* m_adj(m, sizeof(struct atm_pseudohdr)); */

View file

@ -169,7 +169,7 @@
#define IRQ_DISABLED (NUM_IO_INTS + 4)
/*
* An APIC enumerator is a psuedo bus driver that enumerates APIC's including
* An APIC enumerator is a pseudo bus driver that enumerates APIC's including
* CPU's and I/O APIC's.
*/
struct apic_enumerator {