diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2011-10-11 17:51:16 +0200 |
---|---|---|
committer | Clemens Ladisch <clemens@ladisch.de> | 2013-10-20 22:07:57 +0200 |
commit | 8709f1e4d68b0b3caf9783cf2463e5747943bff8 (patch) | |
tree | dfd17fd1166008a0a1d1b4690ce04df719159867 /sound/firewire | |
parent | 435a9be8bdb7422b82c194fad2d279ef436addc1 (diff) |
ALSA: dice: remove superfluous field
The pcm field was not actually used.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound/firewire')
-rw-r--r-- | sound/firewire/dice.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/firewire/dice.c b/sound/firewire/dice.c index 57ceb13f281..2d198aed6f9 100644 --- a/sound/firewire/dice.c +++ b/sound/firewire/dice.c @@ -43,7 +43,6 @@ struct dice { bool global_enabled; wait_queue_head_t hwdep_wait; u32 notification_bits; - struct snd_pcm_substream *pcm; struct fw_iso_resources resources; struct amdtp_out_stream stream; }; @@ -564,8 +563,7 @@ static int dice_create_pcm(struct dice *dice) return err; pcm->private_data = dice; strcpy(pcm->name, dice->card->shortname); - dice->pcm = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream; - dice->pcm->ops = &ops; + pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->ops = &ops; return 0; } |