mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Use the ARRAY_SIZE() macro where appropriate.
Change from v1: Avoid changing the existing coding style in certain files. Signed-off-by: Stuart Brady <stuart.brady@gmail.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6120 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
5626b017d6
commit
b1503cda1e
27 changed files with 54 additions and 60 deletions
|
@ -432,7 +432,7 @@ static uint32_t mipid_txrx(void *opaque, uint32_t cmd, int len)
|
|||
cpu_abort(cpu_single_env, "%s: FIXME: bad SPI word width %i\n",
|
||||
__FUNCTION__, len);
|
||||
|
||||
if (s->p >= sizeof(s->resp) / sizeof(*s->resp))
|
||||
if (s->p >= ARRAY_SIZE(s->resp))
|
||||
ret = 0;
|
||||
else
|
||||
ret = s->resp[s->p ++];
|
||||
|
@ -840,7 +840,7 @@ static void n800_setup_nolo_tags(void *sram_base)
|
|||
|
||||
/* OMAP STI console? Pin out settings? */
|
||||
ADD_TAG(0x6e01, 414);
|
||||
for (i = 0; i < sizeof(n800_pinout) / 4; i ++)
|
||||
for (i = 0; i < ARRAY_SIZE(n800_pinout); i ++)
|
||||
stl_raw(v ++, n800_pinout[i]);
|
||||
|
||||
/* Kernel memsize? */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue