Commit 875f6fff authored by Charles Keepax's avatar Charles Keepax Committed by Takashi Iwai

ALSA: compress: Replace complex if statement with switch

A switch statement looks a bit cleaner than an if statement
spread over 3 lines, as such update this to a switch.
Signed-off-by: default avatarCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
Acked-by: default avatarVinod Koul <vinod.koul@intel.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 1d03f2bd
...@@ -288,9 +288,12 @@ static ssize_t snd_compr_write(struct file *f, const char __user *buf, ...@@ -288,9 +288,12 @@ static ssize_t snd_compr_write(struct file *f, const char __user *buf,
stream = &data->stream; stream = &data->stream;
mutex_lock(&stream->device->lock); mutex_lock(&stream->device->lock);
/* write is allowed when stream is running or has been steup */ /* write is allowed when stream is running or has been steup */
if (stream->runtime->state != SNDRV_PCM_STATE_SETUP && switch (stream->runtime->state) {
stream->runtime->state != SNDRV_PCM_STATE_PREPARED && case SNDRV_PCM_STATE_SETUP:
stream->runtime->state != SNDRV_PCM_STATE_RUNNING) { case SNDRV_PCM_STATE_PREPARED:
case SNDRV_PCM_STATE_RUNNING:
break;
default:
mutex_unlock(&stream->device->lock); mutex_unlock(&stream->device->lock);
return -EBADFD; return -EBADFD;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment