linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] tty: fix spelling mistake
@ 2020-06-09 16:02 Flavio Suligoi
  2020-06-09 17:37 ` Joe Perches
  0 siblings, 1 reply; 5+ messages in thread
From: Flavio Suligoi @ 2020-06-09 16:02 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Jiri Slaby; +Cc: linux-kernel, Flavio Suligoi

Fix typo: "tigger" --> "trigger"

Signed-off-by: Flavio Suligoi <f.suligoi@asem.it>
---
 drivers/tty/moxa.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/tty/moxa.h b/drivers/tty/moxa.h
index 563d2dce80b3..f0a4381b6861 100644
--- a/drivers/tty/moxa.h
+++ b/drivers/tty/moxa.h
@@ -138,7 +138,7 @@
 #define IntrQuit	0x40	/* received QUIT code             */
 #define IntrEOF 	0x80	/* received EOF code              */
 
-#define IntrRxTrigger 	0x100	/* rx data count reach tigger value */
+#define IntrRxTrigger 	0x100	/* rx data count reach trigger value */
 #define IntrTxTrigger 	0x200	/* tx data count below trigger value */
 
 #define Magic_no	(Config_base + 0)
-- 
2.17.1


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

* Re: [PATCH 1/1] tty: fix spelling mistake
  2020-06-09 16:02 [PATCH 1/1] tty: fix spelling mistake Flavio Suligoi
@ 2020-06-09 17:37 ` Joe Perches
  2020-06-09 19:35   ` Jiri Slaby
  2020-06-10  7:12   ` Flavio Suligoi
  0 siblings, 2 replies; 5+ messages in thread
From: Joe Perches @ 2020-06-09 17:37 UTC (permalink / raw)
  To: Flavio Suligoi, Greg Kroah-Hartman, Jiri Slaby; +Cc: linux-kernel

On Tue, 2020-06-09 at 18:02 +0200, Flavio Suligoi wrote:
> Fix typo: "tigger" --> "trigger"

Thanks.

fyi:

$ git grep -w -i tigger
drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c:                       * software tigger (systrig, hrtimer).
drivers/leds/led-triggers.c:/* Simple LED Tigger Interface */
drivers/scsi/mpt3sas/mpt3sas_trigger_diag.h:/* fake firmware event for tigger */
drivers/tty/moxa.h:#define IntrRxTrigger        0x100   /* rx data count reach tigger value */
kernel/trace/trace.c:    * to store the trace event for the tigger to use. It's recusive
tools/testing/selftests/ftrace/test.d/trigger/trigger-hist.tc:echo "Test histogram basic tigger"
tools/testing/selftests/ftrace/test.d/trigger/trigger-stacktrace.tc:echo "Test stacktrace tigger"
tools/testing/selftests/ftrace/test.d/trigger/trigger-trace-marker-hist.tc:echo "Test histogram trace_marker tigger"
tools/testing/selftests/ftrace/test.d/trigger/trigger-trace-marker-snapshot.tc:echo "Test snapshot trace_marker tigger"




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

* Re: [PATCH 1/1] tty: fix spelling mistake
  2020-06-09 17:37 ` Joe Perches
@ 2020-06-09 19:35   ` Jiri Slaby
  2020-06-10 10:02     ` Flavio Suligoi
  2020-06-10  7:12   ` Flavio Suligoi
  1 sibling, 1 reply; 5+ messages in thread
From: Jiri Slaby @ 2020-06-09 19:35 UTC (permalink / raw)
  To: Joe Perches, Flavio Suligoi, Greg Kroah-Hartman; +Cc: linux-kernel

On 09. 06. 20, 19:37, Joe Perches wrote:
> On Tue, 2020-06-09 at 18:02 +0200, Flavio Suligoi wrote:
>> Fix typo: "tigger" --> "trigger"
> 
> Thanks.
> 
> fyi:
> 
> $ git grep -w -i tigger

FYI:
git grep -wi triger
...
worth fixing too :).

-- 
js
suse labs

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

* RE: [PATCH 1/1] tty: fix spelling mistake
  2020-06-09 17:37 ` Joe Perches
  2020-06-09 19:35   ` Jiri Slaby
@ 2020-06-10  7:12   ` Flavio Suligoi
  1 sibling, 0 replies; 5+ messages in thread
From: Flavio Suligoi @ 2020-06-10  7:12 UTC (permalink / raw)
  To: Joe Perches; +Cc: linux-kernel

Hi Joe,

> On Tue, 2020-06-09 at 18:02 +0200, Flavio Suligoi wrote:
> > Fix typo: "tigger" --> "trigger"
> 
> Thanks.
> 
> fyi:
> 
> $ git grep -w -i tigger

Thanks for your suggestion!

> drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c:
> * software tigger (systrig, hrtimer).
> drivers/leds/led-triggers.c:/* Simple LED Tigger Interface */
> drivers/scsi/mpt3sas/mpt3sas_trigger_diag.h:/* fake firmware event for

Flavio


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

* RE: [PATCH 1/1] tty: fix spelling mistake
  2020-06-09 19:35   ` Jiri Slaby
@ 2020-06-10 10:02     ` Flavio Suligoi
  0 siblings, 0 replies; 5+ messages in thread
From: Flavio Suligoi @ 2020-06-10 10:02 UTC (permalink / raw)
  To: Jiri Slaby; +Cc: linux-kernel, Joe Perches, Greg Kroah-Hartman

Hi Jiri,

> Subject: Re: [PATCH 1/1] tty: fix spelling mistake
> 
> On 09. 06. 20, 19:37, Joe Perches wrote:
> > On Tue, 2020-06-09 at 18:02 +0200, Flavio Suligoi wrote:
> >> Fix typo: "tigger" --> "trigger"
> >
> > Thanks.
> >
> > fyi:
> >
> > $ git grep -w -i tigger
> 
> FYI:
> git grep -wi triger
> ...
> worth fixing too :).

ok

> 
> --
> js
> suse labs

Regards,

Flavio

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

end of thread, other threads:[~2020-06-10 10:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-09 16:02 [PATCH 1/1] tty: fix spelling mistake Flavio Suligoi
2020-06-09 17:37 ` Joe Perches
2020-06-09 19:35   ` Jiri Slaby
2020-06-10 10:02     ` Flavio Suligoi
2020-06-10  7:12   ` Flavio Suligoi

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).