ALSA: line6: Remove snd_line6_ prefix of pcm property fields

It's just superfluous and doesn't give any better readability.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Takashi Iwai
2015-01-28 15:08:59 +01:00
parent 72f18d0075
commit 1263f61179
6 changed files with 18 additions and 20 deletions

View File

@@ -216,12 +216,11 @@ static int snd_line6_capture_open(struct snd_pcm_substream *substream)
err = snd_pcm_hw_constraint_ratdens(runtime, 0,
SNDRV_PCM_HW_PARAM_RATE,
(&line6pcm->
properties->snd_line6_rates));
&line6pcm->properties->rates);
if (err < 0)
return err;
runtime->hw = line6pcm->properties->snd_line6_capture_hw;
runtime->hw = line6pcm->properties->capture_hw;
return 0;
}