diff options
| author | Takashi Iwai <tiwai@suse.de> | 2008-09-01 19:45:58 +0200 | 
|---|---|---|
| committer | Jaroslav Kysela <perex@perex.cz> | 2008-09-04 10:33:55 +0200 | 
| commit | c86a456b25695974ddba9833ab8e4f853bcdd995 (patch) | |
| tree | 05f8210f1fd296af6274f40f5e46ecf89b205393 /sound/parisc | |
| parent | 631e8ad428c45ba7ab34df91d1db6cb7bf74d526 (diff) | |
| download | linux-c86a456b25695974ddba9833ab8e4f853bcdd995.tar.bz2 | |
ALSA: harmony - fix a typo
Fix a typo in the patch to remove snd_assert().
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound/parisc')
| -rw-r--r-- | sound/parisc/harmony.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/sound/parisc/harmony.c b/sound/parisc/harmony.c index 774372fe34ad..41f870f8a11d 100644 --- a/sound/parisc/harmony.c +++ b/sound/parisc/harmony.c @@ -869,7 +869,7 @@ snd_harmony_mixer_init(struct snd_harmony *h)  	int idx, err;  	if (snd_BUG_ON(!h)) -		reutrn -EINVAL; +		return -EINVAL;  	strcpy(card->mixername, "Harmony Gain control interface");  	for (idx = 0; idx < HARMONY_CONTROLS; idx++) { |