* [PATCH 0/9] tree-wide: fix typo 'can by' to 'can be'
@ 2018-05-06 11:23 Wolfram Sang
2018-05-06 11:23 ` [PATCH 6/9] NTB: ntb_hw_idt: " Wolfram Sang
0 siblings, 1 reply; 4+ messages in thread
From: Wolfram Sang @ 2018-05-06 11:23 UTC (permalink / raw)
To: trivial
Cc: linux-renesas-soc, Wolfram Sang, devicetree, linux-hwmon,
linux-i2c, linux-input, linux-kernel, linux-ntb, linuxppc-dev,
netdev, reiserfs-devel
I found this kind of typo when reading the documentation for device_remove().
So, I checked the tree for it.
CCing all the subsystems directly, and I'd think the leftover ones could be
picked up by the trivial tree. Or would it be more convenient if trivial would
pick up all? I don't mind.
Based on v4.17-rc3.
Wolfram Sang (9):
dt-bindings: i2c: fix typo 'can by' to 'can be'
powerpc/watchdog: fix typo 'can by' to 'can be'
base: core: fix typo 'can by' to 'can be'
hwmon: fschmd: fix typo 'can by' to 'can be'
input: ati_remote2: fix typo 'can by' to 'can be'
NTB: ntb_hw_idt: fix typo 'can by' to 'can be'
reiserfs: journal: fix typo 'can by' to 'can be'
net: flow_dissector: fix typo 'can by' to 'can be'
objtool: fix typo 'can by' to 'can be'
Documentation/devicetree/bindings/i2c/i2c-davinci.txt | 2 +-
arch/powerpc/kernel/watchdog.c | 2 +-
drivers/base/core.c | 2 +-
drivers/hwmon/fschmd.c | 2 +-
drivers/input/misc/ati_remote2.c | 2 +-
drivers/ntb/hw/idt/ntb_hw_idt.c | 2 +-
fs/reiserfs/journal.c | 2 +-
include/net/flow_dissector.h | 2 +-
tools/objtool/Documentation/stack-validation.txt | 2 +-
9 files changed, 9 insertions(+), 9 deletions(-)
--
2.11.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 6/9] NTB: ntb_hw_idt: fix typo 'can by' to 'can be'
2018-05-06 11:23 [PATCH 0/9] tree-wide: fix typo 'can by' to 'can be' Wolfram Sang
@ 2018-05-06 11:23 ` Wolfram Sang
2018-05-11 13:12 ` Serge Semin
0 siblings, 1 reply; 4+ messages in thread
From: Wolfram Sang @ 2018-05-06 11:23 UTC (permalink / raw)
To: trivial
Cc: linux-renesas-soc, Wolfram Sang, Serge Semin, Jon Mason,
Dave Jiang, Allen Hubbe, linux-ntb, linux-kernel
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
drivers/ntb/hw/idt/ntb_hw_idt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/ntb/hw/idt/ntb_hw_idt.c b/drivers/ntb/hw/idt/ntb_hw_idt.c
index 8d98872d0983b7..dbe72f116017ab 100644
--- a/drivers/ntb/hw/idt/ntb_hw_idt.c
+++ b/drivers/ntb/hw/idt/ntb_hw_idt.c
@@ -1401,7 +1401,7 @@ static int idt_ntb_peer_mw_clear_trans(struct ntb_dev *ntb, int pidx,
* 5. Doorbell operations
*
* Doorbell functionality of IDT PCIe-switches is pretty unusual. First of
- * all there is global doorbell register which state can by changed by any
+ * all there is global doorbell register which state can be changed by any
* NT-function of the IDT device in accordance with global permissions. These
* permissions configs are not supported by NTB API, so it must be done by
* either BIOS or EEPROM settings. In the same way the state of the global
--
2.11.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 6/9] NTB: ntb_hw_idt: fix typo 'can by' to 'can be'
2018-05-06 11:23 ` [PATCH 6/9] NTB: ntb_hw_idt: " Wolfram Sang
@ 2018-05-11 13:12 ` Serge Semin
2018-05-22 0:35 ` Jon Mason
0 siblings, 1 reply; 4+ messages in thread
From: Serge Semin @ 2018-05-11 13:12 UTC (permalink / raw)
To: Wolfram Sang
Cc: trivial, linux-renesas-soc, Jon Mason, Dave Jiang, Allen Hubbe,
linux-ntb, linux-kernel
On Sun, May 06, 2018 at 01:23:50PM +0200, Wolfram Sang <wsa+renesas@sang-engineering.com> wrote:
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> ---
> drivers/ntb/hw/idt/ntb_hw_idt.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/ntb/hw/idt/ntb_hw_idt.c b/drivers/ntb/hw/idt/ntb_hw_idt.c
> index 8d98872d0983b7..dbe72f116017ab 100644
> --- a/drivers/ntb/hw/idt/ntb_hw_idt.c
> +++ b/drivers/ntb/hw/idt/ntb_hw_idt.c
> @@ -1401,7 +1401,7 @@ static int idt_ntb_peer_mw_clear_trans(struct ntb_dev *ntb, int pidx,
> * 5. Doorbell operations
> *
> * Doorbell functionality of IDT PCIe-switches is pretty unusual. First of
> - * all there is global doorbell register which state can by changed by any
> + * all there is global doorbell register which state can be changed by any
> * NT-function of the IDT device in accordance with global permissions. These
> * permissions configs are not supported by NTB API, so it must be done by
> * either BIOS or EEPROM settings. In the same way the state of the global
Acked-by: Serge Semin <fancer.lancer@gmail.com>
> --
> 2.11.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 6/9] NTB: ntb_hw_idt: fix typo 'can by' to 'can be'
2018-05-11 13:12 ` Serge Semin
@ 2018-05-22 0:35 ` Jon Mason
0 siblings, 0 replies; 4+ messages in thread
From: Jon Mason @ 2018-05-22 0:35 UTC (permalink / raw)
To: Serge Semin
Cc: Wolfram Sang, trivial, linux-renesas-soc, Dave Jiang, Allen Hubbe,
linux-ntb, linux-kernel
On Fri, May 11, 2018 at 04:12:36PM +0300, Serge Semin wrote:
> On Sun, May 06, 2018 at 01:23:50PM +0200, Wolfram Sang <wsa+renesas@sang-engineering.com> wrote:
> > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> > ---
> > drivers/ntb/hw/idt/ntb_hw_idt.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/ntb/hw/idt/ntb_hw_idt.c b/drivers/ntb/hw/idt/ntb_hw_idt.c
> > index 8d98872d0983b7..dbe72f116017ab 100644
> > --- a/drivers/ntb/hw/idt/ntb_hw_idt.c
> > +++ b/drivers/ntb/hw/idt/ntb_hw_idt.c
> > @@ -1401,7 +1401,7 @@ static int idt_ntb_peer_mw_clear_trans(struct ntb_dev *ntb, int pidx,
> > * 5. Doorbell operations
> > *
> > * Doorbell functionality of IDT PCIe-switches is pretty unusual. First of
> > - * all there is global doorbell register which state can by changed by any
> > + * all there is global doorbell register which state can be changed by any
> > * NT-function of the IDT device in accordance with global permissions. These
> > * permissions configs are not supported by NTB API, so it must be done by
> > * either BIOS or EEPROM settings. In the same way the state of the global
>
> Acked-by: Serge Semin <fancer.lancer@gmail.com>
Applied to my ntb-next branch.
Thanks,
Jon
>
> > --
> > 2.11.0
> >
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-05-22 0:35 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-06 11:23 [PATCH 0/9] tree-wide: fix typo 'can by' to 'can be' Wolfram Sang
2018-05-06 11:23 ` [PATCH 6/9] NTB: ntb_hw_idt: " Wolfram Sang
2018-05-11 13:12 ` Serge Semin
2018-05-22 0:35 ` Jon Mason
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox