diff options
author | Andres Salomon <dilinger@queued.net> | 2008-11-06 16:53:26 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-12-10 17:14:48 +0100 |
commit | b5ccc57b06b54058879ab3ea548625d9bf88c7fc (patch) | |
tree | 19d3e65959a4f3ddb0ccf5ef44c9ecef7e50ffb8 /sound/pci/cs5535audio/cs5535audio_olpc.c | |
parent | c8f0eeebc119c401202bc2794bec026d6cfd062e (diff) | |
download | linux-stable-b5ccc57b06b54058879ab3ea548625d9bf88c7fc.tar.gz linux-stable-b5ccc57b06b54058879ab3ea548625d9bf88c7fc.tar.bz2 linux-stable-b5ccc57b06b54058879ab3ea548625d9bf88c7fc.zip |
ALSA: cs5535audio: clean up OLPC code
- add copyright info to _olpc.c
- minor layout fixes
- make Makefile more concise
- silence a warning
Signed-off-by: Andres Salomon <dilinger@debian.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/cs5535audio/cs5535audio_olpc.c')
-rw-r--r-- | sound/pci/cs5535audio/cs5535audio_olpc.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/sound/pci/cs5535audio/cs5535audio_olpc.c b/sound/pci/cs5535audio/cs5535audio_olpc.c index 45b24f718d62..164f6bdab991 100644 --- a/sound/pci/cs5535audio/cs5535audio_olpc.c +++ b/sound/pci/cs5535audio/cs5535audio_olpc.c @@ -1,4 +1,14 @@ -#include <sound/driver.h> +/* + * OLPC XO-1 additional sound features + * + * Copyright © 2006 Jaya Kumar <jayakumar.lkml@gmail.com> + * Copyright © 2007-2008 Andres Salomon <dilinger@debian.org> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ #include <sound/core.h> #include <sound/info.h> #include <sound/control.h> @@ -106,7 +116,7 @@ static struct snd_kcontrol_new olpc_cs5535audio_ctls[] __devinitdata = { .info = olpc_dc_info, .get = olpc_dc_get, .put = olpc_dc_put, - .private_value = 0 + .private_value = 0, }, { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, @@ -161,4 +171,3 @@ int __devinit olpc_quirks(struct snd_card *card, struct snd_ac97 *ac97) olpc_mic_bias(ac97, 0); return 0; } - |