diff options
author | Andres Salomon <dilinger@queued.net> | 2008-11-06 16:53:26 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-12-10 11:14:48 -0500 |
commit | b5ccc57b06b54058879ab3ea548625d9bf88c7fc (patch) | |
tree | 19d3e65959a4f3ddb0ccf5ef44c9ecef7e50ffb8 /sound/pci/cs5535audio/cs5535audio_olpc.c | |
parent | c8f0eeebc119c401202bc2794bec026d6cfd062e (diff) |
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 @@ | |||
1 | #include <sound/driver.h> | 1 | /* |
2 | * OLPC XO-1 additional sound features | ||
3 | * | ||
4 | * Copyright © 2006 Jaya Kumar <jayakumar.lkml@gmail.com> | ||
5 | * Copyright © 2007-2008 Andres Salomon <dilinger@debian.org> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | */ | ||
2 | #include <sound/core.h> | 12 | #include <sound/core.h> |
3 | #include <sound/info.h> | 13 | #include <sound/info.h> |
4 | #include <sound/control.h> | 14 | #include <sound/control.h> |
@@ -106,7 +116,7 @@ static struct snd_kcontrol_new olpc_cs5535audio_ctls[] __devinitdata = { | |||
106 | .info = olpc_dc_info, | 116 | .info = olpc_dc_info, |
107 | .get = olpc_dc_get, | 117 | .get = olpc_dc_get, |
108 | .put = olpc_dc_put, | 118 | .put = olpc_dc_put, |
109 | .private_value = 0 | 119 | .private_value = 0, |
110 | }, | 120 | }, |
111 | { | 121 | { |
112 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 122 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
@@ -161,4 +171,3 @@ int __devinit olpc_quirks(struct snd_card *card, struct snd_ac97 *ac97) | |||
161 | olpc_mic_bias(ac97, 0); | 171 | olpc_mic_bias(ac97, 0); |
162 | return 0; | 172 | return 0; |
163 | } | 173 | } |
164 | |||