Message ID | 20250227224006.660164-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Queued |
Delegated to: | Rafael Wysocki |
Headers | show |
Series | [next] thermal: core: Fix spelling mistake "Occurences" -> "Occurrences" | expand |
On Thu, Feb 27, 2025 at 11:40 PM Colin Ian King <colin.i.king@gmail.com> wrote: > > There is a spelling mistake in a seq_puts string. Fix it. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > drivers/thermal/thermal_debugfs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/thermal/thermal_debugfs.c b/drivers/thermal/thermal_debugfs.c > index c800504c3cfe..0cf26ea63370 100644 > --- a/drivers/thermal/thermal_debugfs.c > +++ b/drivers/thermal/thermal_debugfs.c > @@ -319,7 +319,7 @@ static int cdev_tt_seq_show(struct seq_file *s, void *v) > int i = *(loff_t *)v; > > if (!i) > - seq_puts(s, "Transition\tOccurences\n"); > + seq_puts(s, "Transition\tOccurrences\n"); > > list_for_each_entry(entry, &transitions[i], node) { > /* > -- Applied as 6.15 material, thanks!
diff --git a/drivers/thermal/thermal_debugfs.c b/drivers/thermal/thermal_debugfs.c index c800504c3cfe..0cf26ea63370 100644 --- a/drivers/thermal/thermal_debugfs.c +++ b/drivers/thermal/thermal_debugfs.c @@ -319,7 +319,7 @@ static int cdev_tt_seq_show(struct seq_file *s, void *v) int i = *(loff_t *)v; if (!i) - seq_puts(s, "Transition\tOccurences\n"); + seq_puts(s, "Transition\tOccurrences\n"); list_for_each_entry(entry, &transitions[i], node) { /*
There is a spelling mistake in a seq_puts string. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- drivers/thermal/thermal_debugfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)