| To: | kernel-janitors@lists.osdl.org |
|---|---|
| Subject: | [PATCH] sound/mips/au1x00: Use ARRAY_SIZE macro |
| From: | Tobias Klauser <tklauser@xenon.tklauser.home> |
| Date: | Sun, 13 Aug 2006 00:07:50 +0200 |
| Cc: | linux-mips@linux-mips.org, akpm@osdl.org |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Mutt/1.5.9i |
Use ARRAY_SIZE macro instead of sizeof(x)/sizeof(x[0])
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
---
sound/mips/au1x00.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/mips/au1x00.c b/sound/mips/au1x00.c
index c31b386..ff6e6fc 100644
--- a/sound/mips/au1x00.c
+++ b/sound/mips/au1x00.c
@@ -258,7 +258,7 @@ au1000_dma_interrupt(int irq, void *dev_
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,
};
--
1.4.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH] MIPS RM9K watchdog driver, Thomas Koeller |
|---|---|
| Next by Date: | Re: [PATCH] Added MIPS RM9K watchdog driver, Ralf Baechle |
| Previous by Thread: | [PATCH] MIPS RM9K watchdog driver, thomas |
| Next by Thread: | Re: [MIPS] SB1: Build fix: delete initialization of flush_icache_page pointer., Atsushi Nemoto |
| Indexes: | [Date] [Thread] [Top] [All Lists] |