projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d202a6c
)
[PATCH] sound/mips/au1x00: Use ARRAY_SIZE macro
author
Tobias Klauser
<tklauser@xenon.tklauser.home>
Fri, 29 Sep 2006 09:00:20 +0000
(
02:00
-0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Fri, 29 Sep 2006 16:18:14 +0000
(09:18 -0700)
Use ARRAY_SIZE macro instead of sizeof(x)/sizeof(x[0])
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Cc: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
sound/mips/au1x00.c
patch
|
blob
|
history
diff --git
a/sound/mips/au1x00.c
b/sound/mips/au1x00.c
index c31b38659221c4bfd4e141f60a6b85f5b89f1b8a..ff6e6fc198a18a2f20cd9276bcee6ce84e66102d 100644
(file)
--- a/
sound/mips/au1x00.c
+++ b/
sound/mips/au1x00.c
@@
-258,7
+258,7
@@
au1000_dma_interrupt(int irq, void *dev_id, struct pt_regs *regs)
static unsigned int rates[] = {8000, 11025, 16000, 22050};
static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
- .count =
sizeof(rates) / sizeof(rates[0]
),
+ .count =
ARRAY_SIZE(rates
),
.list = rates,
.mask = 0,
};