Skip to content

Commit

Permalink
media: usb: fix spelling mistake: "synchronuously" -> "synchronously"
Browse files Browse the repository at this point in the history
Trivial fix to spelling mistake in error message text

[[email protected]: folded all similar patches into one]
Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
Colin Ian King authored and mchehab committed Nov 7, 2017
1 parent f3eff20 commit b436e26
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 20 deletions.
4 changes: 2 additions & 2 deletions drivers/media/usb/au0828/au0828-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ static inline void print_err_status(struct au0828_dev *dev,

switch (status) {
case -ENOENT:
errmsg = "unlinked synchronuously";
errmsg = "unlinked synchronously";
break;
case -ECONNRESET:
errmsg = "unlinked asynchronuously";
errmsg = "unlinked asynchronously";
break;
case -ENOSR:
errmsg = "Buffer error (overrun)";
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/usb/cx231xx/cx231xx-dvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ static inline void print_err_status(struct cx231xx *dev, int packet, int status)

switch (status) {
case -ENOENT:
errmsg = "unlinked synchronuously";
errmsg = "unlinked synchronously";
break;
case -ECONNRESET:
errmsg = "unlinked asynchronuously";
errmsg = "unlinked asynchronously";
break;
case -ENOSR:
errmsg = "Buffer error (overrun)";
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/usb/cx231xx/cx231xx-vbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ static inline void print_err_status(struct cx231xx *dev, int packet, int status)

switch (status) {
case -ENOENT:
errmsg = "unlinked synchronuously";
errmsg = "unlinked synchronously";
break;
case -ECONNRESET:
errmsg = "unlinked asynchronuously";
errmsg = "unlinked asynchronously";
break;
case -ENOSR:
errmsg = "Buffer error (overrun)";
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/usb/cx231xx/cx231xx-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@ static inline void print_err_status(struct cx231xx *dev, int packet, int status)

switch (status) {
case -ENOENT:
errmsg = "unlinked synchronuously";
errmsg = "unlinked synchronously";
break;
case -ECONNRESET:
errmsg = "unlinked asynchronuously";
errmsg = "unlinked asynchronously";
break;
case -ENOSR:
errmsg = "Buffer error (overrun)";
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/usb/em28xx/em28xx-dvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ static inline void print_err_status(struct em28xx *dev,

switch (status) {
case -ENOENT:
errmsg = "unlinked synchronuously";
errmsg = "unlinked synchronously";
break;
case -ECONNRESET:
errmsg = "unlinked asynchronuously";
errmsg = "unlinked asynchronously";
break;
case -ENOSR:
errmsg = "Buffer error (overrun)";
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/usb/em28xx/em28xx-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -557,10 +557,10 @@ static inline void print_err_status(struct em28xx *dev,

switch (status) {
case -ENOENT:
errmsg = "unlinked synchronuously";
errmsg = "unlinked synchronously";
break;
case -ECONNRESET:
errmsg = "unlinked asynchronuously";
errmsg = "unlinked asynchronously";
break;
case -ENOSR:
errmsg = "Buffer error (overrun)";
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/usb/msi2500/msi2500.c
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ static void msi2500_isoc_handler(struct urb *urb)
if (unlikely(urb->status == -ENOENT ||
urb->status == -ECONNRESET ||
urb->status == -ESHUTDOWN)) {
dev_dbg(dev->dev, "URB (%p) unlinked %ssynchronuously\n",
dev_dbg(dev->dev, "URB (%p) unlinked %ssynchronously\n",
urb, urb->status == -ENOENT ? "" : "a");
return;
}
Expand Down
3 changes: 2 additions & 1 deletion drivers/media/usb/pwc/pwc-if.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@ static void pwc_isoc_handler(struct urb *urb)

if (urb->status == -ENOENT || urb->status == -ECONNRESET ||
urb->status == -ESHUTDOWN) {
PWC_DEBUG_OPEN("URB (%p) unlinked %ssynchronuously.\n", urb, urb->status == -ENOENT ? "" : "a");
PWC_DEBUG_OPEN("URB (%p) unlinked %ssynchronously.\n",
urb, urb->status == -ENOENT ? "" : "a");
return;
}

Expand Down
4 changes: 2 additions & 2 deletions drivers/media/usb/stk1160/stk1160-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ static inline void print_err_status(struct stk1160 *dev,

switch (status) {
case -ENOENT:
errmsg = "unlinked synchronuously";
errmsg = "unlinked synchronously";
break;
case -ECONNRESET:
errmsg = "unlinked asynchronuously";
errmsg = "unlinked asynchronously";
break;
case -ENOSR:
errmsg = "Buffer error (overrun)";
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/usb/tm6000/tm6000-dvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ static inline void print_err_status(struct tm6000_core *dev,

switch (status) {
case -ENOENT:
errmsg = "unlinked synchronuously";
errmsg = "unlinked synchronously";
break;
case -ECONNRESET:
errmsg = "unlinked asynchronuously";
errmsg = "unlinked asynchronously";
break;
case -ENOSR:
errmsg = "Buffer error (overrun)";
Expand Down
4 changes: 2 additions & 2 deletions drivers/media/usb/tm6000/tm6000-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,10 +342,10 @@ static inline void print_err_status(struct tm6000_core *dev,

switch (status) {
case -ENOENT:
errmsg = "unlinked synchronuously";
errmsg = "unlinked synchronously";
break;
case -ECONNRESET:
errmsg = "unlinked asynchronuously";
errmsg = "unlinked asynchronously";
break;
case -ENOSR:
errmsg = "Buffer error (overrun)";
Expand Down

0 comments on commit b436e26

Please sign in to comment.