linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/7] au0828: fix spelling mistake: "synchronuously" -> "synchronously"
@ 2017-11-02 10:11 Colin King
  2017-11-02 10:11 ` [PATCH 2/7] cx231xx: " Colin King
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Colin King @ 2017-11-02 10:11 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Antti Palosaari, Ezequiel Garcia, linux-media
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in error message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/media/usb/au0828/au0828-video.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/usb/au0828/au0828-video.c b/drivers/media/usb/au0828/au0828-video.c
index 9342402b92f7..654f67c25863 100644
--- a/drivers/media/usb/au0828/au0828-video.c
+++ b/drivers/media/usb/au0828/au0828-video.c
@@ -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)";
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/7] cx231xx: fix spelling mistake: "synchronuously" -> "synchronously"
  2017-11-02 10:11 [PATCH 1/7] au0828: fix spelling mistake: "synchronuously" -> "synchronously" Colin King
@ 2017-11-02 10:11 ` Colin King
  2017-11-02 10:11 ` [PATCH 3/7] em28xx: " Colin King
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Colin King @ 2017-11-02 10:11 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Antti Palosaari, Ezequiel Garcia, linux-media
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in error message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/media/usb/cx231xx/cx231xx-dvb.c   | 4 ++--
 drivers/media/usb/cx231xx/cx231xx-vbi.c   | 4 ++--
 drivers/media/usb/cx231xx/cx231xx-video.c | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/media/usb/cx231xx/cx231xx-dvb.c b/drivers/media/usb/cx231xx/cx231xx-dvb.c
index c18bb33e060e..54abc1a7c8e1 100644
--- a/drivers/media/usb/cx231xx/cx231xx-dvb.c
+++ b/drivers/media/usb/cx231xx/cx231xx-dvb.c
@@ -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)";
diff --git a/drivers/media/usb/cx231xx/cx231xx-vbi.c b/drivers/media/usb/cx231xx/cx231xx-vbi.c
index 330b86e4e38f..d3bfe8e23b1f 100644
--- a/drivers/media/usb/cx231xx/cx231xx-vbi.c
+++ b/drivers/media/usb/cx231xx/cx231xx-vbi.c
@@ -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)";
diff --git a/drivers/media/usb/cx231xx/cx231xx-video.c b/drivers/media/usb/cx231xx/cx231xx-video.c
index 179b8481a870..226059fc672b 100644
--- a/drivers/media/usb/cx231xx/cx231xx-video.c
+++ b/drivers/media/usb/cx231xx/cx231xx-video.c
@@ -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)";
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 3/7] em28xx: fix spelling mistake: "synchronuously" -> "synchronously"
  2017-11-02 10:11 [PATCH 1/7] au0828: fix spelling mistake: "synchronuously" -> "synchronously" Colin King
  2017-11-02 10:11 ` [PATCH 2/7] cx231xx: " Colin King
@ 2017-11-02 10:11 ` Colin King
  2017-11-02 10:11 ` [PATCH 4/7] msi2500: " Colin King
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Colin King @ 2017-11-02 10:11 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Antti Palosaari, Ezequiel Garcia, linux-media
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in error message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/media/usb/em28xx/em28xx-dvb.c   | 4 ++--
 drivers/media/usb/em28xx/em28xx-video.c | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/media/usb/em28xx/em28xx-dvb.c b/drivers/media/usb/em28xx/em28xx-dvb.c
index 4a7db623fe29..9950a740e04e 100644
--- a/drivers/media/usb/em28xx/em28xx-dvb.c
+++ b/drivers/media/usb/em28xx/em28xx-dvb.c
@@ -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)";
diff --git a/drivers/media/usb/em28xx/em28xx-video.c b/drivers/media/usb/em28xx/em28xx-video.c
index 8d253a5df0a9..a2ba2d905952 100644
--- a/drivers/media/usb/em28xx/em28xx-video.c
+++ b/drivers/media/usb/em28xx/em28xx-video.c
@@ -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)";
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 4/7] msi2500: fix spelling mistake: "synchronuously" -> "synchronously"
  2017-11-02 10:11 [PATCH 1/7] au0828: fix spelling mistake: "synchronuously" -> "synchronously" Colin King
  2017-11-02 10:11 ` [PATCH 2/7] cx231xx: " Colin King
  2017-11-02 10:11 ` [PATCH 3/7] em28xx: " Colin King
@ 2017-11-02 10:11 ` Colin King
  2017-11-02 10:11 ` [PATCH 5/7] pwc: " Colin King
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Colin King @ 2017-11-02 10:11 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Antti Palosaari, Ezequiel Garcia, linux-media
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in error message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/media/usb/msi2500/msi2500.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/usb/msi2500/msi2500.c b/drivers/media/usb/msi2500/msi2500.c
index a097d3dbc141..65ef755adfdc 100644
--- a/drivers/media/usb/msi2500/msi2500.c
+++ b/drivers/media/usb/msi2500/msi2500.c
@@ -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;
 	}
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 5/7] pwc: fix spelling mistake: "synchronuously" -> "synchronously"
  2017-11-02 10:11 [PATCH 1/7] au0828: fix spelling mistake: "synchronuously" -> "synchronously" Colin King
                   ` (2 preceding siblings ...)
  2017-11-02 10:11 ` [PATCH 4/7] msi2500: " Colin King
@ 2017-11-02 10:11 ` Colin King
  2017-11-02 10:11 ` [PATCH 6/7] stk1160: " Colin King
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Colin King @ 2017-11-02 10:11 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Antti Palosaari, Ezequiel Garcia, linux-media
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in error message text and break line
to clean up checkpatch warning

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/media/usb/pwc/pwc-if.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/media/usb/pwc/pwc-if.c b/drivers/media/usb/pwc/pwc-if.c
index eb6921d2743e..54b036d39c5b 100644
--- a/drivers/media/usb/pwc/pwc-if.c
+++ b/drivers/media/usb/pwc/pwc-if.c
@@ -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;
 	}
 
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 6/7] stk1160: fix spelling mistake: "synchronuously" -> "synchronously"
  2017-11-02 10:11 [PATCH 1/7] au0828: fix spelling mistake: "synchronuously" -> "synchronously" Colin King
                   ` (3 preceding siblings ...)
  2017-11-02 10:11 ` [PATCH 5/7] pwc: " Colin King
@ 2017-11-02 10:11 ` Colin King
  2017-11-02 10:11 ` [PATCH 7/7] tm6000: " Colin King
  2017-11-07  9:02 ` [PATCH 1/7] au0828: " Mauro Carvalho Chehab
  6 siblings, 0 replies; 8+ messages in thread
From: Colin King @ 2017-11-02 10:11 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Antti Palosaari, Ezequiel Garcia, linux-media
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in error message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/media/usb/stk1160/stk1160-video.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/usb/stk1160/stk1160-video.c b/drivers/media/usb/stk1160/stk1160-video.c
index ce8ebbe395a6..423c03a0638d 100644
--- a/drivers/media/usb/stk1160/stk1160-video.c
+++ b/drivers/media/usb/stk1160/stk1160-video.c
@@ -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)";
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 7/7] tm6000: fix spelling mistake: "synchronuously" -> "synchronously"
  2017-11-02 10:11 [PATCH 1/7] au0828: fix spelling mistake: "synchronuously" -> "synchronously" Colin King
                   ` (4 preceding siblings ...)
  2017-11-02 10:11 ` [PATCH 6/7] stk1160: " Colin King
@ 2017-11-02 10:11 ` Colin King
  2017-11-07  9:02 ` [PATCH 1/7] au0828: " Mauro Carvalho Chehab
  6 siblings, 0 replies; 8+ messages in thread
From: Colin King @ 2017-11-02 10:11 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Antti Palosaari, Ezequiel Garcia, linux-media
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in error message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/media/usb/tm6000/tm6000-dvb.c   | 4 ++--
 drivers/media/usb/tm6000/tm6000-video.c | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/media/usb/tm6000/tm6000-dvb.c b/drivers/media/usb/tm6000/tm6000-dvb.c
index 2bc584f75f87..c811fc6cf48a 100644
--- a/drivers/media/usb/tm6000/tm6000-dvb.c
+++ b/drivers/media/usb/tm6000/tm6000-dvb.c
@@ -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)";
diff --git a/drivers/media/usb/tm6000/tm6000-video.c b/drivers/media/usb/tm6000/tm6000-video.c
index 0d45f35e1697..9fa25de6b5a9 100644
--- a/drivers/media/usb/tm6000/tm6000-video.c
+++ b/drivers/media/usb/tm6000/tm6000-video.c
@@ -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)";
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/7] au0828: fix spelling mistake: "synchronuously" -> "synchronously"
  2017-11-02 10:11 [PATCH 1/7] au0828: fix spelling mistake: "synchronuously" -> "synchronously" Colin King
                   ` (5 preceding siblings ...)
  2017-11-02 10:11 ` [PATCH 7/7] tm6000: " Colin King
@ 2017-11-07  9:02 ` Mauro Carvalho Chehab
  6 siblings, 0 replies; 8+ messages in thread
From: Mauro Carvalho Chehab @ 2017-11-07  9:02 UTC (permalink / raw)
  To: Colin King
  Cc: Mauro Carvalho Chehab, Antti Palosaari, Ezequiel Garcia,
	linux-media, kernel-janitors, linux-kernel

Em Thu,  2 Nov 2017 10:11:47 +0000
Colin King <colin.king@canonical.com> escreveu:

> From: Colin Ian King <colin.king@canonical.com>
> 
> Trivial fix to spelling mistake in error message text
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/media/usb/au0828/au0828-video.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Colin,

Patches fold and applied.

For trivial changes like that, please group them per drivers/media
subdir.

Regards,
Mauro

Thanks,
Mauro

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-11-07  9:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-02 10:11 [PATCH 1/7] au0828: fix spelling mistake: "synchronuously" -> "synchronously" Colin King
2017-11-02 10:11 ` [PATCH 2/7] cx231xx: " Colin King
2017-11-02 10:11 ` [PATCH 3/7] em28xx: " Colin King
2017-11-02 10:11 ` [PATCH 4/7] msi2500: " Colin King
2017-11-02 10:11 ` [PATCH 5/7] pwc: " Colin King
2017-11-02 10:11 ` [PATCH 6/7] stk1160: " Colin King
2017-11-02 10:11 ` [PATCH 7/7] tm6000: " Colin King
2017-11-07  9:02 ` [PATCH 1/7] au0828: " Mauro Carvalho Chehab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).