diff options
author | Robert P. J. Day <rpjday@mindspring.com> | 2007-10-19 17:10:43 -0400 |
---|---|---|
committer | Adrian Bunk <bunk@kernel.org> | 2007-10-19 17:10:43 -0400 |
commit | 3a4fa0a25da81600ea0bcd75692ae8ca6050d165 (patch) | |
tree | a4de1662e645c029cf3cf58f0646cbb1959861dc /sound/core | |
parent | 18735dd8d2d37031b97f9e9e106acbaed01eb896 (diff) |
Fix misspellings of "system", "controller", "interrupt" and "necessary".
Fix the various misspellings of "system", controller", "interrupt" and
"[un]necessary".
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Diffstat (limited to 'sound/core')
-rw-r--r-- | sound/core/seq/seq_midi_emul.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/core/seq/seq_midi_emul.c b/sound/core/seq/seq_midi_emul.c index d7c4fb86b9eb..17b3e6f13ca3 100644 --- a/sound/core/seq/seq_midi_emul.c +++ b/sound/core/seq/seq_midi_emul.c | |||
@@ -71,7 +71,7 @@ static void reset_all_channels(struct snd_midi_channel_set *chset); | |||
71 | * such as GM, GS and XG. | 71 | * such as GM, GS and XG. |
72 | * There modes that this module will run in are: | 72 | * There modes that this module will run in are: |
73 | * Generic MIDI - no interpretation at all, it will just save current values | 73 | * Generic MIDI - no interpretation at all, it will just save current values |
74 | * of controlers etc. | 74 | * of controllers etc. |
75 | * GM - You can use all gm_ prefixed elements of chan. Controls, RPN, NRPN, | 75 | * GM - You can use all gm_ prefixed elements of chan. Controls, RPN, NRPN, |
76 | * SysEx will be interpreded as defined in General Midi. | 76 | * SysEx will be interpreded as defined in General Midi. |
77 | * GS - You can use all gs_ prefixed elements of chan. Codes for GS will be | 77 | * GS - You can use all gs_ prefixed elements of chan. Codes for GS will be |
@@ -176,7 +176,7 @@ snd_midi_process_event(struct snd_midi_op *ops, | |||
176 | ev->data.control.value); | 176 | ev->data.control.value); |
177 | break; | 177 | break; |
178 | case SNDRV_SEQ_EVENT_NONREGPARAM: | 178 | case SNDRV_SEQ_EVENT_NONREGPARAM: |
179 | /* Break it back into its controler values */ | 179 | /* Break it back into its controller values */ |
180 | chan->param_type = SNDRV_MIDI_PARAM_TYPE_NONREGISTERED; | 180 | chan->param_type = SNDRV_MIDI_PARAM_TYPE_NONREGISTERED; |
181 | chan->control[MIDI_CTL_MSB_DATA_ENTRY] | 181 | chan->control[MIDI_CTL_MSB_DATA_ENTRY] |
182 | = (ev->data.control.value >> 7) & 0x7f; | 182 | = (ev->data.control.value >> 7) & 0x7f; |
@@ -189,7 +189,7 @@ snd_midi_process_event(struct snd_midi_op *ops, | |||
189 | nrpn(ops, drv, chan, chanset); | 189 | nrpn(ops, drv, chan, chanset); |
190 | break; | 190 | break; |
191 | case SNDRV_SEQ_EVENT_REGPARAM: | 191 | case SNDRV_SEQ_EVENT_REGPARAM: |
192 | /* Break it back into its controler values */ | 192 | /* Break it back into its controller values */ |
193 | chan->param_type = SNDRV_MIDI_PARAM_TYPE_REGISTERED; | 193 | chan->param_type = SNDRV_MIDI_PARAM_TYPE_REGISTERED; |
194 | chan->control[MIDI_CTL_MSB_DATA_ENTRY] | 194 | chan->control[MIDI_CTL_MSB_DATA_ENTRY] |
195 | = (ev->data.control.value >> 7) & 0x7f; | 195 | = (ev->data.control.value >> 7) & 0x7f; |
@@ -267,7 +267,7 @@ note_off(struct snd_midi_op *ops, void *drv, struct snd_midi_channel *chan, | |||
267 | } | 267 | } |
268 | 268 | ||
269 | /* | 269 | /* |
270 | * Do all driver independent operations for this controler and pass | 270 | * Do all driver independent operations for this controller and pass |
271 | * events that need to take place immediately to the driver. | 271 | * events that need to take place immediately to the driver. |
272 | */ | 272 | */ |
273 | static void | 273 | static void |