Commit 8709f1e4 authored by Clemens Ladisch's avatar Clemens Ladisch

ALSA: dice: remove superfluous field

The pcm field was not actually used.
Signed-off-by: default avatarClemens Ladisch <clemens@ladisch.de>
parent 435a9be8
...@@ -43,7 +43,6 @@ struct dice { ...@@ -43,7 +43,6 @@ struct dice {
bool global_enabled; bool global_enabled;
wait_queue_head_t hwdep_wait; wait_queue_head_t hwdep_wait;
u32 notification_bits; u32 notification_bits;
struct snd_pcm_substream *pcm;
struct fw_iso_resources resources; struct fw_iso_resources resources;
struct amdtp_out_stream stream; struct amdtp_out_stream stream;
}; };
...@@ -564,8 +563,7 @@ static int dice_create_pcm(struct dice *dice) ...@@ -564,8 +563,7 @@ static int dice_create_pcm(struct dice *dice)
return err; return err;
pcm->private_data = dice; pcm->private_data = dice;
strcpy(pcm->name, dice->card->shortname); strcpy(pcm->name, dice->card->shortname);
dice->pcm = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream; pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->ops = &ops;
dice->pcm->ops = &ops;
return 0; return 0;
} }
......
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