commit | 80ed404abb480563aaefef28accc69801a95f964 | [log] [tgz] |
---|---|---|
author | Brett Creeley <[email protected]> | Fri Feb 08 12:50:54 2019 -0800 |
committer | Jeff Kirsher <[email protected]> | Tue Mar 19 16:54:23 2019 -0700 |
tree | 3431aee8ffa726e919b85e8593f4c2c1e6d2b3f9 | |
parent | d8df260af70f8b8a9f23466f569c820a90e91696 [diff] |
ice: use ice_for_each_vsi macro when possible Replace all instances of: for (i = 0; i < pf->num_alloc_vsi; i++) with the following macro: ice_for_each_vsi(pf, i) This will allow the code to be consistent since there are currently cases of using both. Signed-off-by: Brett Creeley <[email protected]> Signed-off-by: Anirudh Venkataramanan <[email protected]> Tested-by: Andrew Bowers <[email protected]> Signed-off-by: Jeff Kirsher <[email protected]>