On Thu, Feb 27, 2025 at 11:40 PM Colin Ian King <colin.i.king@xxxxxxxxx> wrote: > > There is a spelling mistake in a seq_puts string. Fix it. > > Signed-off-by: Colin Ian King <colin.i.king@xxxxxxxxx> > --- > 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!