diff options
| author | Clemens Ladisch <clemens@ladisch.de> | 2006-07-03 10:38:28 -0400 |
|---|---|---|
| committer | Jaroslav Kysela <perex@suse.cz> | 2006-07-12 14:07:48 -0400 |
| commit | 40e1a9c0d428740a5c10a5be2335b9d7c39df043 (patch) | |
| tree | 09508d99cbbc8fbda2c2dc6c38d6d290fb65f140 /sound/isa/wavefront | |
| parent | 1a806f487da563d0b60375665911009e60a7d121 (diff) | |
[ALSA] wavefront: fix __init/__devinit confusion
The wavefront driver used __init in some places referenced by __devinit
functions.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/isa/wavefront')
| -rw-r--r-- | sound/isa/wavefront/wavefront_fx.c | 36 | ||||
| -rw-r--r-- | sound/isa/wavefront/wavefront_midi.c | 2 | ||||
| -rw-r--r-- | sound/isa/wavefront/wavefront_synth.c | 14 |
3 files changed, 26 insertions, 26 deletions
diff --git a/sound/isa/wavefront/wavefront_fx.c b/sound/isa/wavefront/wavefront_fx.c index 180661c5ffdc..4f0846feb73f 100644 --- a/sound/isa/wavefront/wavefront_fx.c +++ b/sound/isa/wavefront/wavefront_fx.c | |||
| @@ -34,7 +34,7 @@ | |||
| 34 | 34 | ||
| 35 | /* weird stuff, derived from port I/O tracing with dosemu */ | 35 | /* weird stuff, derived from port I/O tracing with dosemu */ |
| 36 | 36 | ||
| 37 | static unsigned char page_zero[] __initdata = { | 37 | static unsigned char page_zero[] __devinitdata = { |
| 38 | 0x01, 0x7c, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf5, 0x00, | 38 | 0x01, 0x7c, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf5, 0x00, |
| 39 | 0x11, 0x00, 0x20, 0x00, 0x32, 0x00, 0x40, 0x00, 0x13, 0x00, 0x00, | 39 | 0x11, 0x00, 0x20, 0x00, 0x32, 0x00, 0x40, 0x00, 0x13, 0x00, 0x00, |
| 40 | 0x00, 0x14, 0x02, 0x76, 0x00, 0x60, 0x00, 0x80, 0x02, 0x00, 0x00, | 40 | 0x00, 0x14, 0x02, 0x76, 0x00, 0x60, 0x00, 0x80, 0x02, 0x00, 0x00, |
| @@ -61,7 +61,7 @@ static unsigned char page_zero[] __initdata = { | |||
| 61 | 0x1d, 0x02, 0xdf | 61 | 0x1d, 0x02, 0xdf |
| 62 | }; | 62 | }; |
| 63 | 63 | ||
| 64 | static unsigned char page_one[] __initdata = { | 64 | static unsigned char page_one[] __devinitdata = { |
| 65 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x19, 0x00, | 65 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x19, 0x00, |
| 66 | 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xd8, 0x00, 0x00, | 66 | 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xd8, 0x00, 0x00, |
| 67 | 0x02, 0x20, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x01, | 67 | 0x02, 0x20, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x01, |
| @@ -88,7 +88,7 @@ static unsigned char page_one[] __initdata = { | |||
| 88 | 0x60, 0x00, 0x1b | 88 | 0x60, 0x00, 0x1b |
| 89 | }; | 89 | }; |
| 90 | 90 | ||
| 91 | static unsigned char page_two[] __initdata = { | 91 | static unsigned char page_two[] __devinitdata = { |
| 92 | 0xc4, 0x00, 0x44, 0x07, 0x44, 0x00, 0x40, 0x25, 0x01, 0x06, 0xc4, | 92 | 0xc4, 0x00, 0x44, 0x07, 0x44, 0x00, 0x40, 0x25, 0x01, 0x06, 0xc4, |
| 93 | 0x07, 0x40, 0x25, 0x01, 0x00, 0x46, 0x46, 0x00, 0x00, 0x00, 0x00, | 93 | 0x07, 0x40, 0x25, 0x01, 0x00, 0x46, 0x46, 0x00, 0x00, 0x00, 0x00, |
| 94 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 94 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| @@ -103,7 +103,7 @@ static unsigned char page_two[] __initdata = { | |||
| 103 | 0x46, 0x05, 0x46, 0x07, 0x46, 0x07, 0x44 | 103 | 0x46, 0x05, 0x46, 0x07, 0x46, 0x07, 0x44 |
| 104 | }; | 104 | }; |
| 105 | 105 | ||
| 106 | static unsigned char page_three[] __initdata = { | 106 | static unsigned char page_three[] __devinitdata = { |
| 107 | 0x07, 0x40, 0x00, 0x00, 0x00, 0x47, 0x00, 0x40, 0x00, 0x40, 0x06, | 107 | 0x07, 0x40, 0x00, 0x00, 0x00, 0x47, 0x00, 0x40, 0x00, 0x40, 0x06, |
| 108 | 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 108 | 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 109 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 109 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| @@ -118,7 +118,7 @@ static unsigned char page_three[] __initdata = { | |||
| 118 | 0x02, 0x00, 0x42, 0x00, 0xc0, 0x00, 0x40 | 118 | 0x02, 0x00, 0x42, 0x00, 0xc0, 0x00, 0x40 |
| 119 | }; | 119 | }; |
| 120 | 120 | ||
| 121 | static unsigned char page_four[] __initdata = { | 121 | static unsigned char page_four[] __devinitdata = { |
| 122 | 0x63, 0x03, 0x26, 0x02, 0x2c, 0x00, 0x24, 0x00, 0x2e, 0x02, 0x02, | 122 | 0x63, 0x03, 0x26, 0x02, 0x2c, 0x00, 0x24, 0x00, 0x2e, 0x02, 0x02, |
| 123 | 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 123 | 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 124 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 124 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| @@ -133,7 +133,7 @@ static unsigned char page_four[] __initdata = { | |||
| 133 | 0x02, 0x62, 0x02, 0x20, 0x01, 0x21, 0x01 | 133 | 0x02, 0x62, 0x02, 0x20, 0x01, 0x21, 0x01 |
| 134 | }; | 134 | }; |
| 135 | 135 | ||
| 136 | static unsigned char page_six[] __initdata = { | 136 | static unsigned char page_six[] __devinitdata = { |
| 137 | 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x06, 0x00, | 137 | 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x06, 0x00, |
| 138 | 0x00, 0x08, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x0e, | 138 | 0x00, 0x08, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x0e, |
| 139 | 0x00, 0x00, 0x10, 0x00, 0x00, 0x12, 0x00, 0x00, 0x14, 0x00, 0x00, | 139 | 0x00, 0x00, 0x10, 0x00, 0x00, 0x12, 0x00, 0x00, 0x14, 0x00, 0x00, |
| @@ -154,7 +154,7 @@ static unsigned char page_six[] __initdata = { | |||
| 154 | 0x80, 0x00, 0x7e, 0x80, 0x80 | 154 | 0x80, 0x00, 0x7e, 0x80, 0x80 |
| 155 | }; | 155 | }; |
| 156 | 156 | ||
| 157 | static unsigned char page_seven[] __initdata = { | 157 | static unsigned char page_seven[] __devinitdata = { |
| 158 | 0x0f, 0xff, 0x00, 0x00, 0x08, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, | 158 | 0x0f, 0xff, 0x00, 0x00, 0x08, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, |
| 159 | 0x00, 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, | 159 | 0x00, 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, |
| 160 | 0x08, 0x00, 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0f, | 160 | 0x08, 0x00, 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x0f, |
| @@ -181,7 +181,7 @@ static unsigned char page_seven[] __initdata = { | |||
| 181 | 0x00, 0x02, 0x00 | 181 | 0x00, 0x02, 0x00 |
| 182 | }; | 182 | }; |
| 183 | 183 | ||
| 184 | static unsigned char page_zero_v2[] __initdata = { | 184 | static unsigned char page_zero_v2[] __devinitdata = { |
| 185 | 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 185 | 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 186 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 186 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 187 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 187 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| @@ -193,7 +193,7 @@ static unsigned char page_zero_v2[] __initdata = { | |||
| 193 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 | 193 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
| 194 | }; | 194 | }; |
| 195 | 195 | ||
| 196 | static unsigned char page_one_v2[] __initdata = { | 196 | static unsigned char page_one_v2[] __devinitdata = { |
| 197 | 0x01, 0xc0, 0x01, 0xfa, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, | 197 | 0x01, 0xc0, 0x01, 0xfa, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 198 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 198 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 199 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 199 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| @@ -205,21 +205,21 @@ static unsigned char page_one_v2[] __initdata = { | |||
| 205 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 | 205 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
| 206 | }; | 206 | }; |
| 207 | 207 | ||
| 208 | static unsigned char page_two_v2[] __initdata = { | 208 | static unsigned char page_two_v2[] __devinitdata = { |
| 209 | 0x46, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 209 | 0x46, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 210 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 210 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 211 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 211 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 212 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 212 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 213 | 0x00, 0x00, 0x00, 0x00 | 213 | 0x00, 0x00, 0x00, 0x00 |
| 214 | }; | 214 | }; |
| 215 | static unsigned char page_three_v2[] __initdata = { | 215 | static unsigned char page_three_v2[] __devinitdata = { |
| 216 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 216 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 217 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 217 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 218 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 218 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 219 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 219 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 220 | 0x00, 0x00, 0x00, 0x00 | 220 | 0x00, 0x00, 0x00, 0x00 |
| 221 | }; | 221 | }; |
| 222 | static unsigned char page_four_v2[] __initdata = { | 222 | static unsigned char page_four_v2[] __devinitdata = { |
| 223 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 223 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 224 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 224 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 225 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 225 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| @@ -227,7 +227,7 @@ static unsigned char page_four_v2[] __initdata = { | |||
| 227 | 0x00, 0x00, 0x00, 0x00 | 227 | 0x00, 0x00, 0x00, 0x00 |
| 228 | }; | 228 | }; |
| 229 | 229 | ||
| 230 | static unsigned char page_seven_v2[] __initdata = { | 230 | static unsigned char page_seven_v2[] __devinitdata = { |
| 231 | 0x0f, 0xff, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 231 | 0x0f, 0xff, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 232 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 232 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 233 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 233 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| @@ -239,7 +239,7 @@ static unsigned char page_seven_v2[] __initdata = { | |||
| 239 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 | 239 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
| 240 | }; | 240 | }; |
| 241 | 241 | ||
| 242 | static unsigned char mod_v2[] __initdata = { | 242 | static unsigned char mod_v2[] __devinitdata = { |
| 243 | 0x01, 0x00, 0x02, 0x00, 0x01, 0x01, 0x02, 0x00, 0x01, 0x02, 0x02, | 243 | 0x01, 0x00, 0x02, 0x00, 0x01, 0x01, 0x02, 0x00, 0x01, 0x02, 0x02, |
| 244 | 0x00, 0x01, 0x03, 0x02, 0x00, 0x01, 0x04, 0x02, 0x00, 0x01, 0x05, | 244 | 0x00, 0x01, 0x03, 0x02, 0x00, 0x01, 0x04, 0x02, 0x00, 0x01, 0x05, |
| 245 | 0x02, 0x00, 0x01, 0x06, 0x02, 0x00, 0x01, 0x07, 0x02, 0x00, 0xb0, | 245 | 0x02, 0x00, 0x01, 0x06, 0x02, 0x00, 0x01, 0x07, 0x02, 0x00, 0xb0, |
| @@ -269,7 +269,7 @@ static unsigned char mod_v2[] __initdata = { | |||
| 269 | 0x02, 0x01, 0x01, 0x04, 0x02, 0x01, 0x01, 0x05, 0x02, 0x01, 0x01, | 269 | 0x02, 0x01, 0x01, 0x04, 0x02, 0x01, 0x01, 0x05, 0x02, 0x01, 0x01, |
| 270 | 0x06, 0x02, 0x01, 0x01, 0x07, 0x02, 0x01 | 270 | 0x06, 0x02, 0x01, 0x01, 0x07, 0x02, 0x01 |
| 271 | }; | 271 | }; |
| 272 | static unsigned char coefficients[] __initdata = { | 272 | static unsigned char coefficients[] __devinitdata = { |
| 273 | 0x07, 0x46, 0x00, 0x00, 0x07, 0x49, 0x00, 0x00, 0x00, 0x4b, 0x03, | 273 | 0x07, 0x46, 0x00, 0x00, 0x07, 0x49, 0x00, 0x00, 0x00, 0x4b, 0x03, |
| 274 | 0x11, 0x00, 0x4d, 0x01, 0x32, 0x07, 0x46, 0x00, 0x00, 0x07, 0x49, | 274 | 0x11, 0x00, 0x4d, 0x01, 0x32, 0x07, 0x46, 0x00, 0x00, 0x07, 0x49, |
| 275 | 0x00, 0x00, 0x07, 0x40, 0x00, 0x00, 0x07, 0x41, 0x00, 0x00, 0x01, | 275 | 0x00, 0x00, 0x07, 0x40, 0x00, 0x00, 0x07, 0x41, 0x00, 0x00, 0x01, |
| @@ -305,14 +305,14 @@ static unsigned char coefficients[] __initdata = { | |||
| 305 | 0x06, 0x6c, 0x4c, 0x6c, 0x06, 0x50, 0x52, 0xe2, 0x06, 0x42, 0x02, | 305 | 0x06, 0x6c, 0x4c, 0x6c, 0x06, 0x50, 0x52, 0xe2, 0x06, 0x42, 0x02, |
| 306 | 0xba | 306 | 0xba |
| 307 | }; | 307 | }; |
| 308 | static unsigned char coefficients2[] __initdata = { | 308 | static unsigned char coefficients2[] __devinitdata = { |
| 309 | 0x07, 0x46, 0x00, 0x00, 0x07, 0x49, 0x00, 0x00, 0x07, 0x45, 0x0f, | 309 | 0x07, 0x46, 0x00, 0x00, 0x07, 0x49, 0x00, 0x00, 0x07, 0x45, 0x0f, |
| 310 | 0xff, 0x07, 0x48, 0x0f, 0xff, 0x07, 0x7b, 0x04, 0xcc, 0x07, 0x7d, | 310 | 0xff, 0x07, 0x48, 0x0f, 0xff, 0x07, 0x7b, 0x04, 0xcc, 0x07, 0x7d, |
| 311 | 0x04, 0xcc, 0x07, 0x7c, 0x00, 0x00, 0x07, 0x7e, 0x00, 0x00, 0x07, | 311 | 0x04, 0xcc, 0x07, 0x7c, 0x00, 0x00, 0x07, 0x7e, 0x00, 0x00, 0x07, |
| 312 | 0x46, 0x00, 0x00, 0x07, 0x49, 0x00, 0x00, 0x07, 0x47, 0x00, 0x00, | 312 | 0x46, 0x00, 0x00, 0x07, 0x49, 0x00, 0x00, 0x07, 0x47, 0x00, 0x00, |
| 313 | 0x07, 0x4a, 0x00, 0x00, 0x07, 0x4c, 0x00, 0x00, 0x07, 0x4e, 0x00, 0x00 | 313 | 0x07, 0x4a, 0x00, 0x00, 0x07, 0x4c, 0x00, 0x00, 0x07, 0x4e, 0x00, 0x00 |
| 314 | }; | 314 | }; |
| 315 | static unsigned char coefficients3[] __initdata = { | 315 | static unsigned char coefficients3[] __devinitdata = { |
| 316 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x28, 0x00, 0x51, 0x00, | 316 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x28, 0x00, 0x51, 0x00, |
| 317 | 0x51, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0xcc, | 317 | 0x51, 0x00, 0x7a, 0x00, 0x7a, 0x00, 0xa3, 0x00, 0xa3, 0x00, 0xcc, |
| 318 | 0x00, 0xcc, 0x00, 0xf5, 0x00, 0xf5, 0x01, 0x1e, 0x01, 0x1e, 0x01, | 318 | 0x00, 0xcc, 0x00, 0xf5, 0x00, 0xf5, 0x01, 0x1e, 0x01, 0x1e, 0x01, |
| @@ -563,7 +563,7 @@ snd_wavefront_fx_ioctl (struct snd_hwdep *sdev, struct file *file, | |||
| 563 | */ | 563 | */ |
| 564 | 564 | ||
| 565 | 565 | ||
| 566 | int __init | 566 | int __devinit |
| 567 | snd_wavefront_fx_start (snd_wavefront_t *dev) | 567 | snd_wavefront_fx_start (snd_wavefront_t *dev) |
| 568 | 568 | ||
| 569 | { | 569 | { |
diff --git a/sound/isa/wavefront/wavefront_midi.c b/sound/isa/wavefront/wavefront_midi.c index 15888ba2169b..cb3460094324 100644 --- a/sound/isa/wavefront/wavefront_midi.c +++ b/sound/isa/wavefront/wavefront_midi.c | |||
| @@ -474,7 +474,7 @@ snd_wavefront_midi_disable_virtual (snd_wavefront_card_t *card) | |||
| 474 | spin_unlock_irqrestore (&card->wavefront.midi.virtual, flags); | 474 | spin_unlock_irqrestore (&card->wavefront.midi.virtual, flags); |
| 475 | } | 475 | } |
| 476 | 476 | ||
| 477 | int __init | 477 | int __devinit |
| 478 | snd_wavefront_midi_start (snd_wavefront_card_t *card) | 478 | snd_wavefront_midi_start (snd_wavefront_card_t *card) |
| 479 | 479 | ||
| 480 | { | 480 | { |
diff --git a/sound/isa/wavefront/wavefront_synth.c b/sound/isa/wavefront/wavefront_synth.c index 68aa091e8961..bed329edbdd7 100644 --- a/sound/isa/wavefront/wavefront_synth.c +++ b/sound/isa/wavefront/wavefront_synth.c | |||
| @@ -1738,7 +1738,7 @@ snd_wavefront_internal_interrupt (snd_wavefront_card_t *card) | |||
| 1738 | 7 Unused | 1738 | 7 Unused |
| 1739 | */ | 1739 | */ |
| 1740 | 1740 | ||
| 1741 | static int __init | 1741 | static int __devinit |
| 1742 | snd_wavefront_interrupt_bits (int irq) | 1742 | snd_wavefront_interrupt_bits (int irq) |
| 1743 | 1743 | ||
| 1744 | { | 1744 | { |
| @@ -1766,7 +1766,7 @@ snd_wavefront_interrupt_bits (int irq) | |||
| 1766 | return bits; | 1766 | return bits; |
| 1767 | } | 1767 | } |
| 1768 | 1768 | ||
| 1769 | static void __init | 1769 | static void __devinit |
| 1770 | wavefront_should_cause_interrupt (snd_wavefront_t *dev, | 1770 | wavefront_should_cause_interrupt (snd_wavefront_t *dev, |
| 1771 | int val, int port, int timeout) | 1771 | int val, int port, int timeout) |
| 1772 | 1772 | ||
| @@ -1787,7 +1787,7 @@ wavefront_should_cause_interrupt (snd_wavefront_t *dev, | |||
| 1787 | } | 1787 | } |
| 1788 | } | 1788 | } |
| 1789 | 1789 | ||
| 1790 | static int __init | 1790 | static int __devinit |
| 1791 | wavefront_reset_to_cleanliness (snd_wavefront_t *dev) | 1791 | wavefront_reset_to_cleanliness (snd_wavefront_t *dev) |
| 1792 | 1792 | ||
| 1793 | { | 1793 | { |
| @@ -1946,7 +1946,7 @@ wavefront_reset_to_cleanliness (snd_wavefront_t *dev) | |||
| 1946 | #include <asm/uaccess.h> | 1946 | #include <asm/uaccess.h> |
| 1947 | 1947 | ||
| 1948 | 1948 | ||
| 1949 | static int __init | 1949 | static int __devinit |
| 1950 | wavefront_download_firmware (snd_wavefront_t *dev, char *path) | 1950 | wavefront_download_firmware (snd_wavefront_t *dev, char *path) |
| 1951 | 1951 | ||
| 1952 | { | 1952 | { |
| @@ -2047,7 +2047,7 @@ wavefront_download_firmware (snd_wavefront_t *dev, char *path) | |||
| 2047 | } | 2047 | } |
| 2048 | 2048 | ||
| 2049 | 2049 | ||
| 2050 | static int __init | 2050 | static int __devinit |
| 2051 | wavefront_do_reset (snd_wavefront_t *dev) | 2051 | wavefront_do_reset (snd_wavefront_t *dev) |
| 2052 | 2052 | ||
| 2053 | { | 2053 | { |
| @@ -2136,7 +2136,7 @@ wavefront_do_reset (snd_wavefront_t *dev) | |||
| 2136 | return 1; | 2136 | return 1; |
| 2137 | } | 2137 | } |
| 2138 | 2138 | ||
| 2139 | int __init | 2139 | int __devinit |
| 2140 | snd_wavefront_start (snd_wavefront_t *dev) | 2140 | snd_wavefront_start (snd_wavefront_t *dev) |
| 2141 | 2141 | ||
| 2142 | { | 2142 | { |
| @@ -2178,7 +2178,7 @@ snd_wavefront_start (snd_wavefront_t *dev) | |||
| 2178 | return (0); | 2178 | return (0); |
| 2179 | } | 2179 | } |
| 2180 | 2180 | ||
| 2181 | int __init | 2181 | int __devinit |
| 2182 | snd_wavefront_detect (snd_wavefront_card_t *card) | 2182 | snd_wavefront_detect (snd_wavefront_card_t *card) |
| 2183 | 2183 | ||
| 2184 | { | 2184 | { |
