Fix some common typos in comments

- s/configuraiton/configuration/
- s/specifed/specified/
- s/compatiblity/compatibility/

MFC after:	5 days
This commit is contained in:
Gordon Bergling 2021-08-08 10:16:06 +02:00
parent 54247ce1f9
commit 04389c855e
14 changed files with 19 additions and 19 deletions

View file

@ -418,7 +418,7 @@ ses_iter_init(enc_softc_t *enc, enc_cache_t *cache, struct ses_iterator *iter)
/**
* \brief Traverse the provided SES iterator to the next element
* within the configuraiton.
* within the configuration.
*
* \param iter The iterator to move.
*

View file

@ -1510,7 +1510,7 @@ scratch_ram {
size 6
/*
* These are reserved registers in the card's scratch ram on the 2742.
* The EISA configuraiton chip is mapped here. On Rev E. of the
* The EISA configuration chip is mapped here. On Rev E. of the
* aic7770, the sequencer can use this area for scratch, but the
* host cannot directly access these registers. On later chips, this
* area can be read and written by both the host and the sequencer.

View file

@ -85,7 +85,7 @@ METHOD int pin_max {
};
#
# Set value of pin specifed by pin_num
# Set value of pin specified by pin_num
#
METHOD int pin_set {
device_t dev;
@ -94,7 +94,7 @@ METHOD int pin_set {
};
#
# Get value of pin specifed by pin_num
# Get value of pin specified by pin_num
#
METHOD int pin_get {
device_t dev;
@ -103,7 +103,7 @@ METHOD int pin_get {
};
#
# Toggle value of pin specifed by pin_num
# Toggle value of pin specified by pin_num
#
METHOD int pin_toggle {
device_t dev;

View file

@ -49,7 +49,7 @@ METHOD void release_bus {
};
#
# Set value of pin specifed by pin_num
# Set value of pin specified by pin_num
#
METHOD int pin_set {
device_t dev;
@ -59,7 +59,7 @@ METHOD int pin_set {
};
#
# Get value of pin specifed by pin_num
# Get value of pin specified by pin_num
#
METHOD int pin_get {
device_t dev;
@ -69,7 +69,7 @@ METHOD int pin_get {
};
#
# Toggle value of pin specifed by pin_num
# Toggle value of pin specified by pin_num
#
METHOD int pin_toggle {
device_t dev;

View file

@ -132,7 +132,7 @@ typedef HPT_U32 DEVICEID;
#define MAX_ARRAY_MEMBERS_V3 64
#endif
/* keep definition for source code compatiblity */
/* keep definition for source code compatibility */
#define MAX_ARRAY_MEMBERS MAX_ARRAY_MEMBERS_V1
/*

View file

@ -771,7 +771,7 @@ amd_stop_pmc(int cpu, int ri)
/*
* Due to NMI latency on newer AMD processors
* NMI interrupts are ignored, which leads to
* panic or messages based on kernel configuraiton
* panic or messages based on kernel configuration
*/
/* Wait for the count to be reset */

View file

@ -178,7 +178,7 @@ static int update_xoff_threshold(struct mlx5e_priv *priv,
* port_buffer: <output> port receive buffer configuration
* change: <output>
*
* Update buffer configuration based on pfc configuraiton and priority
* Update buffer configuration based on pfc configuration and priority
* to buffer mapping.
* Buffer's lossy bit is changed to:
* lossless if there is at least one PFC enabled priority mapped to this buffer

View file

@ -222,7 +222,7 @@ struct ecore_pf_iov {
#ifdef CONFIG_ECORE_SRIOV
/**
* @brief Read sriov related information and allocated resources
* reads from configuraiton space, shmem, etc.
* reads from configuration space, shmem, etc.
*
* @param p_hwfn
*

View file

@ -61,7 +61,7 @@ struct audio_soc_channel {
struct audio_soc_softc {
/*
* pcm_register assumes that sc is snddev_info,
* so this has to be first structure member for "compatiblity"
* so this has to be first structure member for "compatibility"
*/
struct snddev_info info;
device_t dev;

View file

@ -60,7 +60,7 @@ __FBSDID("$FreeBSD$");
#ifdef INET
/* Verify struct route compatiblity */
/* Verify struct route compatibility */
/* Assert 'struct route_in' is compatible with 'struct route' */
CHK_STRUCT_ROUTE_COMPAT(struct route_in, ro_dst4);

View file

@ -699,7 +699,7 @@ in6_pcbnotify(struct inpcbinfo *pcbinfo, struct sockaddr *dst,
/*
* Detect if we should notify the error. If no source and
* destination ports are specifed, but non-zero flowinfo and
* destination ports are specified, but non-zero flowinfo and
* local address match, notify the error. This is the case
* when the error is delivered with an encrypted buffer
* by ESP. Otherwise, just compare addresses and ports

View file

@ -349,7 +349,7 @@ struct kinfo_file {
int64_t kf_offset; /* Seek location. */
union {
struct {
/* API compatiblity with FreeBSD < 12. */
/* API compatibility with FreeBSD < 12. */
int kf_vnode_type;
int kf_sock_domain;
int kf_sock_type;

View file

@ -215,7 +215,7 @@ showuid(u_long uid)
}
/*
* Print out quotas for a specifed user name.
* Print out quotas for a specified user name.
*/
static int
showusrname(char *name)
@ -246,7 +246,7 @@ showgid(u_long gid)
}
/*
* Print out quotas for a specifed group name.
* Print out quotas for a specified group name.
*/
static int
showgrpname(char *name)

View file

@ -94,7 +94,7 @@ static void wrapup_clean(int _laststatus);
*/
enum qsel_val { /* how a given ptr was selected */
QSEL_UNKNOWN = -1, /* ... not selected yet */
QSEL_BYNAME = 0, /* ... user specifed it by name */
QSEL_BYNAME = 0, /* ... user specified it by name */
QSEL_ALL = 1 /* ... user wants "all" printers */
/* (with more to come) */
};