1
0
Fork 0

synclink: use ARRAY_SIZE

Change sizeof(x) / sizeof(*x) to ARRAY_SIZE(x).

Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
Acked-by: Paul Fulghum <paulkf@microgate.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
hifive-unleashed-5.1
Kulikov Vasiliy 2010-06-28 15:54:48 +04:00 committed by Jiri Kosina
parent 0e4a9d03df
commit 7ea7c6d51e
1 changed files with 1 additions and 1 deletions

View File

@ -4845,7 +4845,7 @@ static int register_test(struct slgt_info *info)
{
static unsigned short patterns[] =
{0x0000, 0xffff, 0xaaaa, 0x5555, 0x6969, 0x9696};
static unsigned int count = sizeof(patterns)/sizeof(patterns[0]);
static unsigned int count = ARRAY_SIZE(patterns);
unsigned int i;
int rc = 0;