Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

treewide: Fix recieve/receive typos

Just spelling fixes.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Joe Perches and committed by
Jiri Kosina
dbc6221b e44ba033

+19 -19
+2 -2
drivers/mmc/host/vub300.c
··· 1625 1625 cmd->error = respretval; 1626 1626 } else if (cmd->error) { 1627 1627 /* 1628 - * the error occured sending the command 1629 - * or recieving the response 1628 + * the error occurred sending the command 1629 + * or receiving the response 1630 1630 */ 1631 1631 } else if (vub300->command_out_urb->status) { 1632 1632 vub300->usb_transport_fail = vub300->command_out_urb->status;
+1 -1
drivers/net/wan/lmc/lmc_var.h
··· 380 380 /* CSR6 settings */ 381 381 #define OPERATION_MODE 0x00000200 /* Full Duplex */ 382 382 #define PROMISC_MODE 0x00000040 /* Promiscuous Mode */ 383 - #define RECIEVE_ALL 0x40000000 /* Receive All */ 383 + #define RECEIVE_ALL 0x40000000 /* Receive All */ 384 384 #define PASS_BAD_FRAMES 0x00000008 /* Pass Bad Frames */ 385 385 386 386 /* Dec control registers CSR6 as well */
+14 -14
drivers/usb/misc/ftdi-elan.c
··· 187 187 u32 controlreg; 188 188 u8 response[4 + 1024]; 189 189 int expected; 190 - int recieved; 190 + int received; 191 191 int ed_found; 192 192 }; 193 193 #define kref_to_usb_ftdi(d) container_of(d, struct usb_ftdi, kref) ··· 353 353 mutex_lock(&ftdi->u132_lock); 354 354 } 355 355 } 356 - ftdi->recieved = 0; 356 + ftdi->received = 0; 357 357 ftdi->expected = 4; 358 358 ftdi->ed_found = 0; 359 359 mutex_unlock(&ftdi->u132_lock); ··· 411 411 } 412 412 } 413 413 } 414 - ftdi->recieved = 0; 414 + ftdi->received = 0; 415 415 ftdi->expected = 4; 416 416 ftdi->ed_found = 0; 417 417 mutex_unlock(&ftdi->u132_lock); ··· 447 447 } 448 448 } 449 449 } 450 - ftdi->recieved = 0; 450 + ftdi->received = 0; 451 451 ftdi->expected = 4; 452 452 ftdi->ed_found = 0; 453 453 mutex_unlock(&ftdi->u132_lock); ··· 874 874 mutex_unlock(&ftdi->u132_lock); 875 875 ftdi_elan_do_callback(ftdi, target, 4 + ftdi->response, 876 876 payload); 877 - ftdi->recieved = 0; 877 + ftdi->received = 0; 878 878 ftdi->expected = 4; 879 879 ftdi->ed_found = 0; 880 880 return ftdi->response; ··· 890 890 mutex_unlock(&ftdi->u132_lock); 891 891 ftdi_elan_do_callback(ftdi, target, 4 + ftdi->response, 892 892 payload); 893 - ftdi->recieved = 0; 893 + ftdi->received = 0; 894 894 ftdi->expected = 4; 895 895 ftdi->ed_found = 0; 896 896 return ftdi->response; ··· 905 905 mutex_unlock(&ftdi->u132_lock); 906 906 ftdi_elan_do_callback(ftdi, target, 4 + ftdi->response, 907 907 payload); 908 - ftdi->recieved = 0; 908 + ftdi->received = 0; 909 909 ftdi->expected = 4; 910 910 ftdi->ed_found = 0; 911 911 return ftdi->response; ··· 914 914 mutex_unlock(&ftdi->u132_lock); 915 915 ftdi_elan_do_callback(ftdi, target, 4 + ftdi->response, 916 916 payload); 917 - ftdi->recieved = 0; 917 + ftdi->received = 0; 918 918 ftdi->expected = 4; 919 919 ftdi->ed_found = 0; 920 920 return ftdi->response; ··· 934 934 if (target->active) 935 935 ftdi_elan_do_callback(ftdi, target, NULL, 0); 936 936 target->abandoning = 0; 937 - ftdi->recieved = 0; 937 + ftdi->received = 0; 938 938 ftdi->expected = 4; 939 939 ftdi->ed_found = 0; 940 940 return ftdi->response; ··· 951 951 */ 952 952 static int ftdi_elan_respond_engine(struct usb_ftdi *ftdi) 953 953 { 954 - u8 *b = ftdi->response + ftdi->recieved; 954 + u8 *b = ftdi->response + ftdi->received; 955 955 int bytes_read = 0; 956 956 int retry_on_empty = 1; 957 957 int retry_on_timeout = 3; ··· 1043 1043 u8 c = ftdi->bulk_in_buffer[++ftdi->bulk_in_last]; 1044 1044 bytes_read += 1; 1045 1045 ftdi->bulk_in_left -= 1; 1046 - if (ftdi->recieved == 0 && c == 0xFF) { 1046 + if (ftdi->received == 0 && c == 0xFF) { 1047 1047 goto have; 1048 1048 } else 1049 1049 *b++ = c; 1050 - if (++ftdi->recieved < ftdi->expected) { 1050 + if (++ftdi->received < ftdi->expected) { 1051 1051 goto have; 1052 1052 } else if (ftdi->ed_found) { 1053 1053 int ed_number = (ftdi->response[0] >> 5) & 0x03; ··· 1069 1069 } 1070 1070 ftdi_elan_do_callback(ftdi, target, 4 + ftdi->response, 1071 1071 payload); 1072 - ftdi->recieved = 0; 1072 + ftdi->received = 0; 1073 1073 ftdi->expected = 4; 1074 1074 ftdi->ed_found = 0; 1075 1075 b = ftdi->response; ··· 1089 1089 *respond->value = data; 1090 1090 *respond->result = 0; 1091 1091 complete(&respond->wait_completion); 1092 - ftdi->recieved = 0; 1092 + ftdi->received = 0; 1093 1093 ftdi->expected = 4; 1094 1094 ftdi->ed_found = 0; 1095 1095 b = ftdi->response;
+1 -1
include/scsi/osd_initiator.h
··· 262 262 * osd_req_decode_sense_full - Decode sense information after execution. 263 263 * 264 264 * @or: - osd_request to examine 265 - * @osi - Recievs a more detailed error report information (optional). 265 + * @osi - Receives a more detailed error report information (optional). 266 266 * @silent - Do not print to dmsg (Even if enabled) 267 267 * @bad_obj_list - Some commands act on multiple objects. Failed objects will 268 268 * be received here (optional)
+1 -1
sound/soc/omap/ams-delta.c
··· 330 330 return 0; 331 331 } 332 332 333 - /* Line discipline .recieve_buf() */ 333 + /* Line discipline .receive_buf() */ 334 334 static void cx81801_receive(struct tty_struct *tty, 335 335 const unsigned char *cp, char *fp, int count) 336 336 {