mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-31 14:23:53 -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
|
@ -628,14 +628,13 @@ static int ndis_query(USBNetState *s, uint32_t oid,
|
|||
uint8_t *inbuf, unsigned int inlen, uint8_t *outbuf,
|
||||
size_t outlen)
|
||||
{
|
||||
unsigned int i, count;
|
||||
unsigned int i;
|
||||
|
||||
switch (oid) {
|
||||
/* general oids (table 4-1) */
|
||||
/* mandatory */
|
||||
case OID_GEN_SUPPORTED_LIST:
|
||||
count = sizeof(oid_supported_list) / sizeof(uint32_t);
|
||||
for (i = 0; i < count; i++)
|
||||
for (i = 0; i < ARRAY_SIZE(oid_supported_list); i++)
|
||||
((le32 *) outbuf)[i] = cpu_to_le32(oid_supported_list[i]);
|
||||
return sizeof(oid_supported_list);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue