aboutsummaryrefslogtreecommitdiffstats
path: root/sound/arm/aaci.h
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2011-01-12 19:34:08 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2011-01-26 15:24:11 -0500
commitc0dea82c3c141c33ca22ca85f80e592028840864 (patch)
tree66aee355bba147c335bb30e04694fe003b53ced5 /sound/arm/aaci.h
parentf006d8fc53c461aa66a9265597494f83ddf4f53d (diff)
ALSA: AACI: use snd_pcm_lib_period_bytes()
Use the helper rather than open-coding this. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'sound/arm/aaci.h')
-rw-r--r--sound/arm/aaci.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/arm/aaci.h b/sound/arm/aaci.h
index 04c4568413f4..198750d6871d 100644
--- a/sound/arm/aaci.h
+++ b/sound/arm/aaci.h
@@ -210,6 +210,8 @@ struct aaci_runtime {
210 u32 cr; 210 u32 cr;
211 struct snd_pcm_substream *substream; 211 struct snd_pcm_substream *substream;
212 212
213 unsigned int period; /* byte size of a "period" */
214
213 /* 215 /*
214 * PIO support 216 * PIO support
215 */ 217 */
@@ -217,7 +219,6 @@ struct aaci_runtime {
217 void *end; 219 void *end;
218 void *ptr; 220 void *ptr;
219 int bytes; 221 int bytes;
220 unsigned int period;
221 unsigned int fifosz; 222 unsigned int fifosz;
222}; 223};
223 224