* [PATCH] Fix a misspelling in kernel/cpu.c
@ 2018-02-06 16:12 Kangmin Park
2018-02-13 13:06 ` Ingo Molnar
0 siblings, 1 reply; 5+ messages in thread
From: Kangmin Park @ 2018-02-06 16:12 UTC (permalink / raw)
To: tglx; +Cc: mingo, peterz, bigeasy, paulmck, arnd, linux-kernel
---
kernel/cpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 53f7dc6..9a1ee53 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1336,7 +1336,7 @@ static struct cpuhp_step cpuhp_ap_states[] = {
.teardown.single = smpcfd_dying_cpu,
},
/* Entry state on starting. Interrupts enabled from here on. Transient
- * state for synchronsization */
+ * state for synchronization */
[CPUHP_AP_ONLINE] = {
.name = "ap:online",
},
--
2.7.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Fix a misspelling in kernel/cpu.c
2018-02-06 16:12 [PATCH] Fix a misspelling in kernel/cpu.c Kangmin Park
@ 2018-02-13 13:06 ` Ingo Molnar
0 siblings, 0 replies; 5+ messages in thread
From: Ingo Molnar @ 2018-02-13 13:06 UTC (permalink / raw)
To: Kangmin Park; +Cc: tglx, peterz, bigeasy, paulmck, arnd, linux-kernel
* Kangmin Park <l4stpr0gr4m@gmail.com> wrote:
> ---
> kernel/cpu.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/cpu.c b/kernel/cpu.c
> index 53f7dc6..9a1ee53 100644
> --- a/kernel/cpu.c
> +++ b/kernel/cpu.c
> @@ -1336,7 +1336,7 @@ static struct cpuhp_step cpuhp_ap_states[] = {
> .teardown.single = smpcfd_dying_cpu,
> },
> /* Entry state on starting. Interrupts enabled from here on. Transient
> - * state for synchronsization */
> + * state for synchronization */
> [CPUHP_AP_ONLINE] = {
> .name = "ap:online",
> },
The comment style should be fixed too to match the rest of the kernel, plus a
Signed-off-by is required as well.
Thanks,
Ingo
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] Fix a misspelling in kernel/cpu.c
@ 2018-02-12 21:29 Kangmin Park
0 siblings, 0 replies; 5+ messages in thread
From: Kangmin Park @ 2018-02-12 21:29 UTC (permalink / raw)
To: Andrew Morton; +Cc: Jiri Kosina, linux-kernel, Kangmin Park
A trivial patch to fix a misspelling in kernel/cpu.c
Fix 'synchronsization' to 'synchronization' in comment
Signed-off-by: Kangmin Park <l4stpr0gr4m@gmail.com>
---
kernel/cpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 53f7dc6..9a1ee53 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1336,7 +1336,7 @@ static struct cpuhp_step cpuhp_ap_states[] = {
.teardown.single = smpcfd_dying_cpu,
},
/* Entry state on starting. Interrupts enabled from here on. Transient
- * state for synchronsization */
+ * state for synchronization */
[CPUHP_AP_ONLINE] = {
.name = "ap:online",
},
--
2.7.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] Fix a misspelling in kernel/cpu.c
@ 2018-02-06 16:50 l4stpr0gr4m
0 siblings, 0 replies; 5+ messages in thread
From: l4stpr0gr4m @ 2018-02-06 16:50 UTC (permalink / raw)
To: tglx; +Cc: mingo, peterz, bigeasy, paulmck, arnd, linux-kernel, Kangmin Park
From: Kangmin Park <l4stpr0gr4m@gmail.com>
Signed-off-by: Kangmin Park <l4stpr0gr4m@gmail.com>
Sorry for sending duplicate.
A trivial path to fix a typo in kernel/cpu.c
Fix 'synchronsization' to 'synchronization'
---
kernel/cpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 53f7dc6..9a1ee53 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1336,7 +1336,7 @@ static struct cpuhp_step cpuhp_ap_states[] = {
.teardown.single = smpcfd_dying_cpu,
},
/* Entry state on starting. Interrupts enabled from here on. Transient
- * state for synchronsization */
+ * state for synchronization */
[CPUHP_AP_ONLINE] = {
.name = "ap:online",
},
--
2.7.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] Fix a misspelling in kernel/cpu.c
@ 2018-02-04 15:27 Kangmin Park
0 siblings, 0 replies; 5+ messages in thread
From: Kangmin Park @ 2018-02-04 15:27 UTC (permalink / raw)
To: trivial, linux-kernel
A trivial patch to fix a typo in kernel/cpu.c
Fix 'synchronsization' to 'synchronization'
Signed-off-by: Kangmin Park <l4stpr0gr4m@gmail.com>
Cc: Jiri Kosina <trivial@kernel.org>
Cc: linux-kernel@vger.kernel.org
diff --git a/kernel/cpu.c b/kernel/cpu.c
index 53f7dc6..9a1ee53 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1336,7 +1336,7 @@ static struct cpuhp_step cpuhp_ap_states[] = {
.teardown.single = smpcfd_dying_cpu,
},
/* Entry state on starting. Interrupts enabled from here on. Transient
- * state for synchronsization */
+ * state for synchronization */
[CPUHP_AP_ONLINE] = {
.name = "ap:online",
},
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-02-13 13:06 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-06 16:12 [PATCH] Fix a misspelling in kernel/cpu.c Kangmin Park
2018-02-13 13:06 ` Ingo Molnar
-- strict thread matches above, loose matches on Subject: below --
2018-02-12 21:29 Kangmin Park
2018-02-06 16:50 l4stpr0gr4m
2018-02-04 15:27 Kangmin Park
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®