Skip to content

Commit

Permalink
kselftest: alsa: fix spelling mistake "desciptor" -> "descriptor"
Browse files Browse the repository at this point in the history
There are some spelling mistakes in some ksft messages. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Shuah Khan <skhan@linuxfoundation.org>
Link: https://lore.kernel.org/r/20220207092235.240284-1-colin.i.king@gmail.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Colin Ian King authored and Takashi Iwai committed Feb 8, 2022
1 parent 3db3d85 commit 8f85b4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/testing/selftests/alsa/mixer-test.c
Original file line number Diff line number Diff line change
@@ -198,7 +198,7 @@ static void find_controls(void)

err = snd_ctl_poll_descriptors_count(card_data->handle);
if (err != 1) {
ksft_exit_fail_msg("Unexpected desciptor count %d for card %d\n",
ksft_exit_fail_msg("Unexpected descriptor count %d for card %d\n",
err, card);
}

@@ -248,12 +248,12 @@ static int wait_for_event(struct ctl_data *ctl, int timeout)
&(ctl->card->pollfd),
1, &revents);
if (err < 0) {
ksft_print_msg("snd_ctl_poll_desciptors_revents() failed for %s: %d\n",
ksft_print_msg("snd_ctl_poll_descriptors_revents() failed for %s: %d\n",
ctl->name, err);
return err;
}
if (revents & POLLERR) {
ksft_print_msg("snd_ctl_poll_desciptors_revents() reported POLLERR for %s\n",
ksft_print_msg("snd_ctl_poll_descriptors_revents() reported POLLERR for %s\n",
ctl->name);
return -1;
}

0 comments on commit 8f85b4d

Please sign in to comment.