forked from Minki/linux
kselftest: alsa: fix spelling mistake "desciptor" -> "descriptor"
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>
This commit is contained in:
parent
3db3d85944
commit
8f85b4da57
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user