* [PATCH] Fix typo in versatile.c
@ 2024-10-05 8:51 Shivam Chaudhary
2024-10-06 18:18 ` Liviu Dudau
2024-10-11 19:32 ` Linus Walleij
0 siblings, 2 replies; 4+ messages in thread
From: Shivam Chaudhary @ 2024-10-05 8:51 UTC (permalink / raw)
To: liviu.dudau, sudeep.holla, lpieralisi, linus.walleij, linux
Cc: linux-arm-kernel, linux-kernel, Shivam Chaudhary
Corrected minor typo in versatile.c
- Fixed "documentaton" to "documentation"
Signed-off-by: Shivam Chaudhary <cvam0000@gmail.com>
---
arch/arm/mach-versatile/versatile.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-versatile/versatile.c b/arch/arm/mach-versatile/versatile.c
index 7ef03d0c224d..f0c80d4663ca 100644
--- a/arch/arm/mach-versatile/versatile.c
+++ b/arch/arm/mach-versatile/versatile.c
@@ -134,7 +134,7 @@ static void __init versatile_dt_pci_init(void)
val = readl(versatile_sys_base + VERSATILE_SYS_PCICTL_OFFSET);
if (val & 1) {
/*
- * Enable PCI accesses. Note that the documentaton is
+ * Enable PCI accesses. Note that the documentation is
* inconsistent whether or not this is needed, but the old
* driver had it so we will keep it.
*/
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Fix typo in versatile.c
2024-10-05 8:51 [PATCH] Fix typo in versatile.c Shivam Chaudhary
@ 2024-10-06 18:18 ` Liviu Dudau
2024-10-11 19:32 ` Linus Walleij
1 sibling, 0 replies; 4+ messages in thread
From: Liviu Dudau @ 2024-10-06 18:18 UTC (permalink / raw)
To: Shivam Chaudhary
Cc: sudeep.holla, lpieralisi, linus.walleij, linux, linux-arm-kernel,
linux-kernel
On Sat, Oct 05, 2024 at 02:21:17PM +0530, Shivam Chaudhary wrote:
> Corrected minor typo in versatile.c
> - Fixed "documentaton" to "documentation"
>
> Signed-off-by: Shivam Chaudhary <cvam0000@gmail.com>
Acked-by: Liviu Dudau <liviu.dudau@arm.com>
> ---
> arch/arm/mach-versatile/versatile.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-versatile/versatile.c b/arch/arm/mach-versatile/versatile.c
> index 7ef03d0c224d..f0c80d4663ca 100644
> --- a/arch/arm/mach-versatile/versatile.c
> +++ b/arch/arm/mach-versatile/versatile.c
> @@ -134,7 +134,7 @@ static void __init versatile_dt_pci_init(void)
> val = readl(versatile_sys_base + VERSATILE_SYS_PCICTL_OFFSET);
> if (val & 1) {
> /*
> - * Enable PCI accesses. Note that the documentaton is
> + * Enable PCI accesses. Note that the documentation is
> * inconsistent whether or not this is needed, but the old
> * driver had it so we will keep it.
> */
> --
> 2.34.1
>
--
====================
| I would like to |
| fix the world, |
| but they're not |
| giving me the |
\ source code! /
---------------
¯\_(ツ)_/¯
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Fix typo in versatile.c
2024-10-05 8:51 [PATCH] Fix typo in versatile.c Shivam Chaudhary
2024-10-06 18:18 ` Liviu Dudau
@ 2024-10-11 19:32 ` Linus Walleij
2024-10-12 0:37 ` Liviu Dudau
1 sibling, 1 reply; 4+ messages in thread
From: Linus Walleij @ 2024-10-11 19:32 UTC (permalink / raw)
To: Shivam Chaudhary
Cc: liviu.dudau, sudeep.holla, lpieralisi, linux, linux-arm-kernel,
linux-kernel
On Sat, Oct 5, 2024 at 10:51 AM Shivam Chaudhary <cvam0000@gmail.com> wrote:
> Corrected minor typo in versatile.c
> - Fixed "documentaton" to "documentation"
>
> Signed-off-by: Shivam Chaudhary <cvam0000@gmail.com>
I applied the patch to a branch with Versatile stuff, that I will
send upstream whenever we have some more stuff to queue.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Fix typo in versatile.c
2024-10-11 19:32 ` Linus Walleij
@ 2024-10-12 0:37 ` Liviu Dudau
0 siblings, 0 replies; 4+ messages in thread
From: Liviu Dudau @ 2024-10-12 0:37 UTC (permalink / raw)
To: Linus Walleij
Cc: Shivam Chaudhary, sudeep.holla, lpieralisi, linux,
linux-arm-kernel, linux-kernel
On Fri, Oct 11, 2024 at 09:32:42PM +0200, Linus Walleij wrote:
> On Sat, Oct 5, 2024 at 10:51 AM Shivam Chaudhary <cvam0000@gmail.com> wrote:
>
> > Corrected minor typo in versatile.c
> > - Fixed "documentaton" to "documentation"
> >
> > Signed-off-by: Shivam Chaudhary <cvam0000@gmail.com>
>
> I applied the patch to a branch with Versatile stuff, that I will
> send upstream whenever we have some more stuff to queue.
Many thanks, Linus!
Best regards,
Liviu
>
> Yours,
> Linus Walleij
--
====================
| I would like to |
| fix the world, |
| but they're not |
| giving me the |
\ source code! /
---------------
¯\_(ツ)_/¯
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-12 0:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-05 8:51 [PATCH] Fix typo in versatile.c Shivam Chaudhary
2024-10-06 18:18 ` Liviu Dudau
2024-10-11 19:32 ` Linus Walleij
2024-10-12 0:37 ` Liviu Dudau
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).