diff options
author | Alejandro Martinez Ruiz <alex@flawedcode.org> | 2007-10-22 21:36:44 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-01-29 11:14:54 +0100 |
commit | 2b22c034d04d3632a339d14d5803c8f94e412608 (patch) | |
tree | 332d25c97099978d28b644cc1fb405ec982dafdf /arch/mips/au1000/common | |
parent | [MIPS] tlbex: Cleanup handling of R2 hazards in TLB handlers. (diff) | |
download | linux-2b22c034d04d3632a339d14d5803c8f94e412608.tar.xz linux-2b22c034d04d3632a339d14d5803c8f94e412608.zip |
[MIPS] Converting most array size calculations to use ARRAY_SIZE().
Signed-off-by: Alejandro Martinez Ruiz <alex@flawedcode.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/au1000/common')
-rw-r--r-- | arch/mips/au1000/common/dbdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/au1000/common/dbdma.c b/arch/mips/au1000/common/dbdma.c index edf91f41a786..428ed275a0f6 100644 --- a/arch/mips/au1000/common/dbdma.c +++ b/arch/mips/au1000/common/dbdma.c @@ -179,7 +179,7 @@ static dbdev_tab_t dbdev_tab[] = { { 0, 0, 0, 0, 0, 0, 0 }, }; -#define DBDEV_TAB_SIZE (sizeof(dbdev_tab) / sizeof(dbdev_tab_t)) +#define DBDEV_TAB_SIZE ARRAY_SIZE(dbdev_tab) static chan_tab_t *chan_tab_ptr[NUM_DBDMA_CHANS]; |