diff options
author | Bhaskar Chowdhury <unixbhaskar@gmail.com> | 2021-03-26 12:12:11 +0530 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2021-03-26 09:12:30 +0100 |
commit | 583770e84a44c4e4ea206546ea07cc534fcd6d58 (patch) | |
tree | 9eaf745a6b08684ea8373fc61e20d4011b1e53b5 /sound/core | |
parent | 44609fc01f280d6b4067262ecbb00e3128d718ae (diff) | |
download | linux-583770e84a44c4e4ea206546ea07cc534fcd6d58.tar.bz2 |
ALSA: pcm: Fix couple of typos
s/unconditonally/unconditionally/
s/succesful/successful/
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
Link: https://lore.kernel.org/r/20210326064211.6509-1-unixbhaskar@gmail.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core')
-rw-r--r-- | sound/core/pcm_native.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c index 17a85f4815d5..8dbe86cf2e4f 100644 --- a/sound/core/pcm_native.c +++ b/sound/core/pcm_native.c @@ -1425,7 +1425,7 @@ static int snd_pcm_do_stop(struct snd_pcm_substream *substream, substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_STOP); substream->runtime->stop_operating = true; } - return 0; /* unconditonally stop all substreams */ + return 0; /* unconditionally stop all substreams */ } static void snd_pcm_post_stop(struct snd_pcm_substream *substream, @@ -1469,7 +1469,7 @@ EXPORT_SYMBOL(snd_pcm_stop); * After stopping, the state is changed to SETUP. * Unlike snd_pcm_stop(), this affects only the given stream. * - * Return: Zero if succesful, or a negative error code. + * Return: Zero if successful, or a negative error code. */ int snd_pcm_drain_done(struct snd_pcm_substream *substream) { |