diff options
author | Robert P. J. Day <rpjday@mindspring.com> | 2007-06-06 20:19:34 +0200 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2007-06-07 09:25:51 +0200 |
commit | 60da8de671cc314c75118768052d04ea92eaed4d (patch) | |
tree | 69f95707bcd749d9b89bfdb400d76677c04c5651 /drivers/mmc/host/au1xmmc.c | |
parent | mmc-atmel: remove linux/mmc/protocol.h dependencies (diff) | |
download | linux-60da8de671cc314c75118768052d04ea92eaed4d.tar.xz linux-60da8de671cc314c75118768052d04ea92eaed4d.zip |
au1xmmc: Replace C code with call to ARRAY_SIZE() macro.
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc/host/au1xmmc.c')
-rw-r--r-- | drivers/mmc/host/au1xmmc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mmc/host/au1xmmc.c b/drivers/mmc/host/au1xmmc.c index f967226d7505..52b63f11ddd6 100644 --- a/drivers/mmc/host/au1xmmc.c +++ b/drivers/mmc/host/au1xmmc.c @@ -76,8 +76,7 @@ const struct { #endif }; -#define AU1XMMC_CONTROLLER_COUNT \ - (sizeof(au1xmmc_card_table) / sizeof(au1xmmc_card_table[0])) +#define AU1XMMC_CONTROLLER_COUNT (ARRAY_SIZE(au1xmmc_card_table)) /* This array stores pointers for the hosts (used by the IRQ handler) */ struct au1xmmc_host *au1xmmc_hosts[AU1XMMC_CONTROLLER_COUNT]; |