diff options
author | Joe Perches <joe@perches.com> | 2011-06-23 11:40:18 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-06-28 14:54:17 -0700 |
commit | ceeb6fec707e88adc2d8faa65a67df8451d02f63 (patch) | |
tree | 6467bc98314bea00fe564e5e20bc574966cf62dd /drivers/staging/usbip | |
parent | d9b42c01ae8d17fdf8d910a4255d18ed2ac22f90 (diff) |
staging: Fix recieve/receive typos
Just spelling fixes.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/usbip')
-rw-r--r-- | drivers/staging/usbip/userspace/src/usbip_attach.c | 2 | ||||
-rw-r--r-- | drivers/staging/usbip/userspace/src/usbipd.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/usbip/userspace/src/usbip_attach.c b/drivers/staging/usbip/userspace/src/usbip_attach.c index 189238b791b3..06640b2f44b8 100644 --- a/drivers/staging/usbip/userspace/src/usbip_attach.c +++ b/drivers/staging/usbip/userspace/src/usbip_attach.c @@ -131,7 +131,7 @@ static int query_import_device(int sockfd, char *busid) return -1; } - /* recieve a reply */ + /* receive a reply */ rc = usbip_recv_op_common(sockfd, &code); if (rc < 0) { err("recv op_common"); diff --git a/drivers/staging/usbip/userspace/src/usbipd.c b/drivers/staging/usbip/userspace/src/usbipd.c index 332f9e631fd5..521b44ed80c4 100644 --- a/drivers/staging/usbip/userspace/src/usbipd.c +++ b/drivers/staging/usbip/userspace/src/usbipd.c @@ -409,7 +409,7 @@ gboolean process_comming_request(GIOChannel *gio, GIOCondition condition, ret = recv_pdu(csock); if (ret < 0) - err("process recieved pdu"); + err("process received pdu"); close(csock); } |