diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-01-13 23:25:10 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-01-26 21:24:52 +0100 |
commit | 5d350cba486de34eff99d0394d8fb436af54522e (patch) | |
tree | 2acda06b2425eb5c2e2dd8b663dd5ce44170f273 /sound/arm/aaci.h | |
parent | ALSA: AACI: no need to call snd_pcm_period_elapsed() for each period (diff) | |
download | linux-5d350cba486de34eff99d0394d8fb436af54522e.tar.xz linux-5d350cba486de34eff99d0394d8fb436af54522e.zip |
ALSA: AACI: make fifo variables more explanitory
Improve commenting and change fifo variable names to reflect their
meanings.
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/arm/aaci.h b/sound/arm/aaci.h index 198750d6871d..5791bd5bd2ab 100644 --- a/sound/arm/aaci.h +++ b/sound/arm/aaci.h @@ -219,14 +219,14 @@ struct aaci_runtime { void *end; void *ptr; int bytes; - unsigned int fifosz; + unsigned int fifo_bytes; }; struct aaci { struct amba_device *dev; struct snd_card *card; void __iomem *base; - unsigned int fifosize; + unsigned int fifo_depth; unsigned int users; struct mutex irq_lock; |