HV: treewide: fix violations of coding guideline C-ST-02

The coding guideline rule C-ST-02 requires that 'the loop body shall be
enclosed with brackets', or more specifically, braces. This patch adds
braces to the single-line loop bodies.

This patch has no semantic change.

Tracked-On: #6776
Signed-off-by: Junjie Mao <junjie.mao@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
Junjie Mao
2021-10-29 10:56:11 +08:00
committed by wenlingz
parent ff891b4f79
commit b0dbc1cbfe
2 changed files with 6 additions and 3 deletions

View File

@@ -130,8 +130,9 @@ int32_t add_vmsix_capability(struct pci_vdev *vdev, uint32_t entry_num, uint8_t
vdev->msix.table_count = entry_num;
/* set mask bit of vector control register */
for (i = 0; i < entry_num; i++)
for (i = 0; i < entry_num; i++) {
vdev->msix.table_entries[i].vector_control |= PCIM_MSIX_VCTRL_MASK;
}
(void)memset(&msixcap, 0U, sizeof(struct msixcap));