diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-01-13 03:34:08 +0300 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-01-26 23:24:11 +0300 |
commit | c0dea82c3c141c33ca22ca85f80e592028840864 (patch) | |
tree | 66aee355bba147c335bb30e04694fe003b53ced5 /sound/arm/aaci.h | |
parent | f006d8fc53c461aa66a9265597494f83ddf4f53d (diff) | |
download | linux-c0dea82c3c141c33ca22ca85f80e592028840864.tar.xz |
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.h | 3 |
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 { u32 cr; struct snd_pcm_substream *substream; + unsigned int period; /* byte size of a "period" */ + /* * PIO support */ @@ -217,7 +219,6 @@ struct aaci_runtime { void *end; void *ptr; int bytes; - unsigned int period; unsigned int fifosz; }; |