All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] m68k: nommu: Fix misspellings of "DragonEngine"
@ 2022-12-13  8:19 Geert Uytterhoeven
  2022-12-19 12:32 ` Greg Ungerer
  0 siblings, 1 reply; 4+ messages in thread
From: Geert Uytterhoeven @ 2022-12-13  8:19 UTC (permalink / raw)
  To: Greg Ungerer; +Cc: linux-m68k, Geert Uytterhoeven

Exys produced the "DragonEngine II" board.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
The printed message:

    arch/m68k/kernel/setup_no.c:    pr_info("DragonEngine II board support by Georges Menie\n");

matches Georges' website:

    https://www.menie.org/georges/DragonEngine/
---
 arch/m68k/Kconfig.machine | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/m68k/Kconfig.machine b/arch/m68k/Kconfig.machine
index b7a70297fbc1a5a6..e2f961208f18bec5 100644
--- a/arch/m68k/Kconfig.machine
+++ b/arch/m68k/Kconfig.machine
@@ -199,11 +199,11 @@ config UCDIMM
 	  Support for the Arcturus Networks uCdimm module.
 
 config DRAGEN2
-	bool "DragenEngine II board support"
+	bool "DragonEngine II board support"
 	depends on !MMU
 	select M68VZ328
 	help
-	  Support for the DragenEngine II board.
+	  Support for the DragonEngine II board.
 
 config DIRECT_IO_ACCESS
 	bool "Allow user to access IO directly"
-- 
2.25.1


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

* Re: [PATCH] m68k: nommu: Fix misspellings of "DragonEngine"
  2022-12-13  8:19 [PATCH] m68k: nommu: Fix misspellings of "DragonEngine" Geert Uytterhoeven
@ 2022-12-19 12:32 ` Greg Ungerer
  2022-12-19 13:42   ` Geert Uytterhoeven
  0 siblings, 1 reply; 4+ messages in thread
From: Greg Ungerer @ 2022-12-19 12:32 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: linux-m68k

Hi Geert,

On 13/12/22 18:19, Geert Uytterhoeven wrote:
> Exys produced the "DragonEngine II" board.
> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>

At least the misspelling was used consistently ;-)
See arch/m68k/68000/dragen2.c!

Do you want me to push through the m68knommu git tree?

Regards
Greg


> ---
> The printed message:
> 
>      arch/m68k/kernel/setup_no.c:    pr_info("DragonEngine II board support by Georges Menie\n");
> 
> matches Georges' website:
> 
>      https://www.menie.org/georges/DragonEngine/
> ---
>   arch/m68k/Kconfig.machine | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/m68k/Kconfig.machine b/arch/m68k/Kconfig.machine
> index b7a70297fbc1a5a6..e2f961208f18bec5 100644
> --- a/arch/m68k/Kconfig.machine
> +++ b/arch/m68k/Kconfig.machine
> @@ -199,11 +199,11 @@ config UCDIMM
>   	  Support for the Arcturus Networks uCdimm module.
>   
>   config DRAGEN2
> -	bool "DragenEngine II board support"
> +	bool "DragonEngine II board support"
>   	depends on !MMU
>   	select M68VZ328
>   	help
> -	  Support for the DragenEngine II board.
> +	  Support for the DragonEngine II board.
>   
>   config DIRECT_IO_ACCESS
>   	bool "Allow user to access IO directly"

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

* Re: [PATCH] m68k: nommu: Fix misspellings of "DragonEngine"
  2022-12-19 12:32 ` Greg Ungerer
@ 2022-12-19 13:42   ` Geert Uytterhoeven
  2022-12-19 22:04     ` Greg Ungerer
  0 siblings, 1 reply; 4+ messages in thread
From: Geert Uytterhoeven @ 2022-12-19 13:42 UTC (permalink / raw)
  To: Greg Ungerer; +Cc: linux-m68k

Hi Greg,

On Mon, Dec 19, 2022 at 1:33 PM Greg Ungerer <gerg@linux-m68k.org> wrote:
> On 13/12/22 18:19, Geert Uytterhoeven wrote:
> > Exys produced the "DragonEngine II" board.
> >
> > Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
>
> At least the misspelling was used consistently ;-)
> See arch/m68k/68000/dragen2.c!

No it was not: that file has a different misspelling.
Sending v2...

> Do you want me to push through the m68knommu git tree?

Yes please (same for the other patch).
Thanks!

> > ---
> > The printed message:
> >
> >      arch/m68k/kernel/setup_no.c:    pr_info("DragonEngine II board support by Georges Menie\n");
> >
> > matches Georges' website:
> >
> >      https://www.menie.org/georges/DragonEngine/
> > ---
> >   arch/m68k/Kconfig.machine | 4 ++--
> >   1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/arch/m68k/Kconfig.machine b/arch/m68k/Kconfig.machine
> > index b7a70297fbc1a5a6..e2f961208f18bec5 100644
> > --- a/arch/m68k/Kconfig.machine
> > +++ b/arch/m68k/Kconfig.machine
> > @@ -199,11 +199,11 @@ config UCDIMM
> >         Support for the Arcturus Networks uCdimm module.
> >
> >   config DRAGEN2
> > -     bool "DragenEngine II board support"
> > +     bool "DragonEngine II board support"
> >       depends on !MMU
> >       select M68VZ328
> >       help
> > -       Support for the DragenEngine II board.
> > +       Support for the DragonEngine II board.
> >
> >   config DIRECT_IO_ACCESS
> >       bool "Allow user to access IO directly"


Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH] m68k: nommu: Fix misspellings of "DragonEngine"
  2022-12-19 13:42   ` Geert Uytterhoeven
@ 2022-12-19 22:04     ` Greg Ungerer
  0 siblings, 0 replies; 4+ messages in thread
From: Greg Ungerer @ 2022-12-19 22:04 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: linux-m68k

Hi Geert,

On 19/12/22 23:42, Geert Uytterhoeven wrote:
> Hi Greg,
> 
> On Mon, Dec 19, 2022 at 1:33 PM Greg Ungerer <gerg@linux-m68k.org> wrote:
>> On 13/12/22 18:19, Geert Uytterhoeven wrote:
>>> Exys produced the "DragonEngine II" board.
>>>
>>> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
>>
>> At least the misspelling was used consistently ;-)
>> See arch/m68k/68000/dragen2.c!
> 
> No it was not: that file has a different misspelling.
> Sending v2...

Hah, yes, I missed that entirely different misspelling too.
Good catch.


>> Do you want me to push through the m68knommu git tree?
> 
> Yes please (same for the other patch).
> Thanks!

Yep, will do. As soon this merge window closes I will push them in.

Thanks!
Greg


>>> ---
>>> The printed message:
>>>
>>>       arch/m68k/kernel/setup_no.c:    pr_info("DragonEngine II board support by Georges Menie\n");
>>>
>>> matches Georges' website:
>>>
>>>       https://www.menie.org/georges/DragonEngine/
>>> ---
>>>    arch/m68k/Kconfig.machine | 4 ++--
>>>    1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/arch/m68k/Kconfig.machine b/arch/m68k/Kconfig.machine
>>> index b7a70297fbc1a5a6..e2f961208f18bec5 100644
>>> --- a/arch/m68k/Kconfig.machine
>>> +++ b/arch/m68k/Kconfig.machine
>>> @@ -199,11 +199,11 @@ config UCDIMM
>>>          Support for the Arcturus Networks uCdimm module.
>>>
>>>    config DRAGEN2
>>> -     bool "DragenEngine II board support"
>>> +     bool "DragonEngine II board support"
>>>        depends on !MMU
>>>        select M68VZ328
>>>        help
>>> -       Support for the DragenEngine II board.
>>> +       Support for the DragonEngine II board.
>>>
>>>    config DIRECT_IO_ACCESS
>>>        bool "Allow user to access IO directly"
> 
> 
> Gr{oetje,eeting}s,
> 
>                          Geert
> 
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                  -- Linus Torvalds

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

end of thread, other threads:[~2022-12-19 22:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-13  8:19 [PATCH] m68k: nommu: Fix misspellings of "DragonEngine" Geert Uytterhoeven
2022-12-19 12:32 ` Greg Ungerer
2022-12-19 13:42   ` Geert Uytterhoeven
2022-12-19 22:04     ` Greg Ungerer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.