diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2011-05-10 07:28:35 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-07-26 16:48:33 +0200 | 
| commit | d2397817f12d246cfd88caefd6f12dfd3e2d2c17 (patch) | |
| tree | a925fe399a8b9bfe359d02cfb95aa990ed88d187 /post/lib_powerpc/cr.c | |
| parent | 9146d13821a20c49703e1f8f7e4a4f028678883d (diff) | |
| download | olio-uboot-2014.01-d2397817f12d246cfd88caefd6f12dfd3e2d2c17.tar.xz olio-uboot-2014.01-d2397817f12d246cfd88caefd6f12dfd3e2d2c17.zip | |
post: use ARRAY_SIZE
We've got a handy dandy macro already for calculating the number of
elements in an array, so use it.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'post/lib_powerpc/cr.c')
| -rw-r--r-- | post/lib_powerpc/cr.c | 12 | 
1 files changed, 4 insertions, 8 deletions
| diff --git a/post/lib_powerpc/cr.c b/post/lib_powerpc/cr.c index fbee6d5c4..ada7c7af2 100644 --- a/post/lib_powerpc/cr.c +++ b/post/lib_powerpc/cr.c @@ -59,8 +59,7 @@ static ulong cpu_post_cr_table1[] =      0xaaaaaaaa,      0x55555555,  }; -static unsigned int cpu_post_cr_size1 = -    sizeof (cpu_post_cr_table1) / sizeof (ulong); +static unsigned int cpu_post_cr_size1 = ARRAY_SIZE(cpu_post_cr_table1);  static struct cpu_post_cr_s2 {      ulong xer; @@ -76,8 +75,7 @@ static struct cpu_post_cr_s2 {  	5      },  }; -static unsigned int cpu_post_cr_size2 = -    sizeof (cpu_post_cr_table2) / sizeof (struct cpu_post_cr_s2); +static unsigned int cpu_post_cr_size2 = ARRAY_SIZE(cpu_post_cr_table2);  static struct cpu_post_cr_s3 {      ulong cr; @@ -99,8 +97,7 @@ static struct cpu_post_cr_s3 {  	0x71234567      },  }; -static unsigned int cpu_post_cr_size3 = -    sizeof (cpu_post_cr_table3) / sizeof (struct cpu_post_cr_s3); +static unsigned int cpu_post_cr_size3 = ARRAY_SIZE(cpu_post_cr_table3);  static struct cpu_post_cr_s4 {      ulong cmd; @@ -240,8 +237,7 @@ static struct cpu_post_cr_s4 {  	0x0000ffff      },  }; -static unsigned int cpu_post_cr_size4 = -    sizeof (cpu_post_cr_table4) / sizeof (struct cpu_post_cr_s4); +static unsigned int cpu_post_cr_size4 = ARRAY_SIZE(cpu_post_cr_table4);  int cpu_post_test_cr (void)  { |