Skip to content

Commit

Permalink
[ALSA] au88x0 - Fix a compile warning
Browse files Browse the repository at this point in the history
Modules: au88x0 driver

Fixed an uninitialized variable.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai authored and Jaroslav Kysela committed Jan 22, 2006
1 parent cacd334 commit 7113d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/pci/au88x0/au88x0_eq.c
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ static int
snd_vortex_peaks_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
{
vortex_t *vortex = snd_kcontrol_chip(kcontrol);
int i, count;
int i, count = 0;
u16 peaks[20];

vortex_Eqlzr_GetAllPeaks(vortex, peaks, &count);
Expand Down

0 comments on commit 7113d68

Please sign in to comment.