diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2022-09-06 15:03:14 +0100 |
---|---|---|
committer | Mika Westerberg <mika.westerberg@linux.intel.com> | 2022-09-07 09:09:24 +0300 |
commit | 706d73836481ccee5c3ce039bd09fb5bfc9cc031 (patch) | |
tree | fbfb8ff0001c35970c3c4102d0228dd6f7144ab8 /drivers/thunderbolt/debugfs.c | |
parent | a52958321bbb4e8b2b4ab5849b8cbb0202b1029d (diff) | |
download | lwn-706d73836481ccee5c3ce039bd09fb5bfc9cc031.tar.gz lwn-706d73836481ccee5c3ce039bd09fb5bfc9cc031.zip |
thunderbolt: debugfs: Fix spelling mistakes in seq_puts text
There are a handful of spelling mistakes in seq_puts text. Fix them.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Diffstat (limited to 'drivers/thunderbolt/debugfs.c')
-rw-r--r-- | drivers/thunderbolt/debugfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/thunderbolt/debugfs.c b/drivers/thunderbolt/debugfs.c index a1df3a7f159b..834bcad42e9f 100644 --- a/drivers/thunderbolt/debugfs.c +++ b/drivers/thunderbolt/debugfs.c @@ -351,7 +351,7 @@ static int margining_caps_show(struct seq_file *s, void *not_used) seq_puts(s, "# hardware margining: no\n"); } - seq_printf(s, "# both lanes simultaneusly: %s\n", + seq_printf(s, "# both lanes simultaneously: %s\n", both_lanes(usb4) ? "yes" : "no"); seq_printf(s, "# voltage margin steps: %u\n", usb4->margining->voltage_steps); @@ -366,7 +366,7 @@ static int margining_caps_show(struct seq_file *s, void *not_used) seq_puts(s, "# returns high or low voltage margin\n"); break; case USB4_MARGIN_CAP_0_VOLTAGE_BOTH: - seq_puts(s, "# returns both hight and low margings\n"); + seq_puts(s, "# returns both high and low margins\n"); break; } |