diff options
author | Yannick Guerrini <yguerrini@tomshardware.fr> | 2015-03-09 17:13:03 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-03-10 07:40:30 -0400 |
commit | ce991981311e0ae258982b600564226ad6cb24ea (patch) | |
tree | 820a3e6b0bd8722d67179efc6e0136787e5f0cb9 | |
parent | 4aa01c408b7022c620241b373d4c3707a2ebeab6 (diff) |
ALSA: firewire: Fix trivial typos in comments
Change 'propper' to 'proper'
Change 'paramters' to 'parameters'
Change 'SYT_INTEVAL' to 'SYT_INTERVAL'
Change 'aligh'/'alighed' to 'align'/'aligned'
Signed-off-by: Yannick Guerrini <yguerrini@tomshardware.fr>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/firewire/amdtp.c | 8 | ||||
-rw-r--r-- | sound/firewire/fireworks/fireworks_transaction.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sound/firewire/amdtp.c b/sound/firewire/amdtp.c index 5cc356db5351..e061355f535f 100644 --- a/sound/firewire/amdtp.c +++ b/sound/firewire/amdtp.c | |||
@@ -166,10 +166,10 @@ int amdtp_stream_add_pcm_hw_constraints(struct amdtp_stream *s, | |||
166 | * One AMDTP packet can include some frames. In blocking mode, the | 166 | * One AMDTP packet can include some frames. In blocking mode, the |
167 | * number equals to SYT_INTERVAL. So the number is 8, 16 or 32, | 167 | * number equals to SYT_INTERVAL. So the number is 8, 16 or 32, |
168 | * depending on its sampling rate. For accurate period interrupt, it's | 168 | * depending on its sampling rate. For accurate period interrupt, it's |
169 | * preferrable to aligh period/buffer sizes to current SYT_INTERVAL. | 169 | * preferrable to align period/buffer sizes to current SYT_INTERVAL. |
170 | * | 170 | * |
171 | * TODO: These constraints can be improved with propper rules. | 171 | * TODO: These constraints can be improved with proper rules. |
172 | * Currently apply LCM of SYT_INTEVALs. | 172 | * Currently apply LCM of SYT_INTERVALs. |
173 | */ | 173 | */ |
174 | err = snd_pcm_hw_constraint_step(runtime, 0, | 174 | err = snd_pcm_hw_constraint_step(runtime, 0, |
175 | SNDRV_PCM_HW_PARAM_PERIOD_SIZE, 32); | 175 | SNDRV_PCM_HW_PARAM_PERIOD_SIZE, 32); |
@@ -270,7 +270,7 @@ static void amdtp_read_s32(struct amdtp_stream *s, | |||
270 | * @s: the AMDTP stream to configure | 270 | * @s: the AMDTP stream to configure |
271 | * @format: the format of the ALSA PCM device | 271 | * @format: the format of the ALSA PCM device |
272 | * | 272 | * |
273 | * The sample format must be set after the other paramters (rate/PCM channels/ | 273 | * The sample format must be set after the other parameters (rate/PCM channels/ |
274 | * MIDI) and before the stream is started, and must not be changed while the | 274 | * MIDI) and before the stream is started, and must not be changed while the |
275 | * stream is running. | 275 | * stream is running. |
276 | */ | 276 | */ |
diff --git a/sound/firewire/fireworks/fireworks_transaction.c b/sound/firewire/fireworks/fireworks_transaction.c index 2a85e4209f0b..f550808d1784 100644 --- a/sound/firewire/fireworks/fireworks_transaction.c +++ b/sound/firewire/fireworks/fireworks_transaction.c | |||
@@ -13,7 +13,7 @@ | |||
13 | * | 13 | * |
14 | * Transaction substance: | 14 | * Transaction substance: |
15 | * At first, 6 data exist. Following to the data, parameters for each command | 15 | * At first, 6 data exist. Following to the data, parameters for each command |
16 | * exist. All of the parameters are 32 bit alighed to big endian. | 16 | * exist. All of the parameters are 32 bit aligned to big endian. |
17 | * data[0]: Length of transaction substance | 17 | * data[0]: Length of transaction substance |
18 | * data[1]: Transaction version | 18 | * data[1]: Transaction version |
19 | * data[2]: Sequence number. This is incremented by the device | 19 | * data[2]: Sequence number. This is incremented by the device |