Commit 3e588d63 authored by Michael Hayes's avatar Michael Hayes Committed by David Woodhouse

[PATCH] Spelling fixes - receive

This fixes:
    recieve -> receive
    recieved -> received
    reciever -> receiver

Fixes 14 occurrences in all.
parent a890825b
......@@ -1453,7 +1453,7 @@ smp_intr_init(void)
}
/* send a CPI at level cpi to a set of cpus in cpuset (set 1 bit per
* processor to recieve CPI */
* processor to receive CPI */
static void
send_CPI(__u32 cpuset, __u8 cpi)
{
......
......@@ -139,7 +139,7 @@
#define _LSR_RX_ERR (_LSR_LB_BREAK | _LSR_FE_MASK | _LSR_OE_MASK | \
_LSR_PE_MASK )
/* serial port reciever command register */
/* serial port receiver command register */
#define _RCR_ER_MASK 0x80 /* enable receiver mask */
#define _RCR_DME_MASK 0x60 /* dma mode */
......
......@@ -2495,7 +2495,7 @@ int __init tdm8xx_sound_init(void)
cp->cp_simode &= ~0x00000fff;
/* Enable common receive/transmit clock pins, use IDL format.
* Sync on falling edge, transmit rising clock, recieve falling
* Sync on falling edge, transmit rising clock, receive falling
* clock, delay 1 bit on both Tx and Rx. Common Tx/Rx clocks and
* sync.
* Connect SMC2 to TSA.
......
......@@ -164,7 +164,7 @@
#define IBM_CPM_CPU 0x10000000 /* PPC405B3 clock control */
#define IBM_CPM_AUD 0x08000000 /* Audio Decoder */
#define IBM_CPM_EBIU 0x04000000 /* External Bus Interface Unit */
#define IBM_CPM_IRR 0x02000000 /* Infrared reciever */
#define IBM_CPM_IRR 0x02000000 /* Infrared receiver */
#define IBM_CPM_DMA 0x01000000 /* DMA controller */
#define IBM_CPM_UART2 0x00200000 /* Serial Control Port */
#define IBM_CPM_UART1 0x00100000 /* Serial 1 / Infrared */
......
......@@ -16,7 +16,7 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have recieved a copy of the GNU General Public
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 021110-1307, USA.
......
......@@ -317,7 +317,7 @@ Amd7930_empty_Dfifo(struct IsdnCardState *cs, int flag)
QuickHex(t, cs->rcvbuf, cs->rcvidx);
debugl1(cs, cs->dlog);
}
/* moves recieved data in sk-buffer */
/* moves received data in sk-buffer */
memcpy(skb_put(skb, cs->rcvidx), cs->rcvbuf, cs->rcvidx);
skb_queue_tail(&cs->rq, skb);
}
......
......@@ -1949,7 +1949,7 @@ e100_rx_srv(struct e100_private *bdp)
/* to allow manipulation with current skb we need to unlink it */
list_del(&(rx_struct->list_elem));
/* do not free & unmap badly recieved packet.
/* do not free & unmap badly received packet.
* move it to the end of skb list for reuse */
if (!(rfd_status & RFD_STATUS_OK)) {
e100_add_skb_to_end(bdp, rx_struct);
......
......@@ -166,7 +166,7 @@ struct ipmi_msg
typedef struct ipmi_user *ipmi_user_t;
/*
* Stuff coming from the recieve interface comes as one of these.
* Stuff coming from the receive interface comes as one of these.
* They are allocated, the receiver must free them with
* ipmi_free_recv_msg() when done with the message. The link is not
* used after the message is delivered, so the upper layer may use the
......
......@@ -61,7 +61,7 @@ struct llc_opt {
u8 inc_cntr;
u8 dec_cntr;
u8 connect_step;
u8 last_nr; /* NR of last pdu recieved */
u8 last_nr; /* NR of last pdu received */
u32 rx_pdu_hdr; /* used for saving header of last pdu
received and caused sending FRMR.
Used for resending FRMR */
......
......@@ -1233,7 +1233,7 @@ struct SCTP_association {
/* Pointer to last transport I have sent on. */
struct sctp_transport *last_sent_to;
/* This is the last transport I have recieved DATA on. */
/* This is the last transport I have received DATA on. */
struct sctp_transport *last_data_from;
/*
......
......@@ -177,7 +177,7 @@ struct sctp_sndrcvinfo {
*/
enum sctp_sinfo_flags {
MSG_UNORDERED = 1, /* Send/recieve message unordered. */
MSG_UNORDERED = 1, /* Send/receive message unordered. */
MSG_ADDR_OVER = 2, /* Override the primary destination. */
MSG_ABORT=4, /* Send an ABORT message to the peer. */
/* MSG_EOF is already defined per socket.h */
......
......@@ -203,7 +203,7 @@ void llc_pdu_init_as_xid_cmd(struct sk_buff *skb, u8 svcs_supported,
xid_info = (struct llc_xid_info *)(((u8 *)&pdu->ctrl_1) + 1);
xid_info->fmt_id = LLC_XID_FMT_ID; /* 0x81 */
xid_info->type = svcs_supported;
xid_info->rw = rx_window << 1; /* size of recieve window */
xid_info->rw = rx_window << 1; /* size of receive window */
skb_put(skb, 3);
}
......
......@@ -423,7 +423,7 @@ static int sctp_outq_flush_rtx(struct sctp_outq *q, sctp_packet_t *pkt,
*start_timer = 1;
/* Stop sending DATA as there is no more room
* at the reciever.
* at the receiver.
*/
list_add(lchunk, lqueue);
lchunk = NULL;
......
......@@ -785,7 +785,7 @@ static void sctp_rcvmsg_rfree(struct sk_buff *skb)
sctp_association_put(asoc);
}
/* Charge receive window for bytes recieved. */
/* Charge receive window for bytes received. */
static void sctp_ulpevent_set_owner_r(struct sk_buff *skb, sctp_association_t *asoc)
{
sctp_ulpevent_t *event;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment