diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-03-31 10:49:15 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-03-31 10:46:47 +0200 |
commit | c687c9bbda373bfab8c8df8362a27b1ecb5240c1 (patch) | |
tree | 2de939f739338e11c9fb3e89e115175ec89d5100 /sound/pci | |
parent | a870593bab179ca402ead455f45af6e4404a2a7f (diff) | |
download | op-kernel-dev-c687c9bbda373bfab8c8df8362a27b1ecb5240c1.zip op-kernel-dev-c687c9bbda373bfab8c8df8362a27b1ecb5240c1.tar.gz |
ALSA: asihpi: fix some indenting in snd_card_asihpi_pcm_new()
This used to be a part of a condition until f3d145aac913 ('ALSA: asihpi:
MMAP for non-busmaster cards') but now it's not and we can remove an
indent level.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/asihpi/asihpi.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sound/pci/asihpi/asihpi.c b/sound/pci/asihpi/asihpi.c index e4e42f2..901c949 100644 --- a/sound/pci/asihpi/asihpi.c +++ b/sound/pci/asihpi/asihpi.c @@ -1253,11 +1253,12 @@ static int snd_card_asihpi_pcm_new(struct snd_card_asihpi *asihpi, int device) num_outstreams, num_instreams, &pcm); if (err < 0) return err; + /* pointer to ops struct is stored, dont change ops afterwards! */ - snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, - &snd_card_asihpi_playback_mmap_ops); - snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, - &snd_card_asihpi_capture_mmap_ops); + snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, + &snd_card_asihpi_playback_mmap_ops); + snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, + &snd_card_asihpi_capture_mmap_ops); pcm->private_data = asihpi; pcm->info_flags = 0; |