net/qede/base: fix sriov typo
authorRasesh Mody <rasesh.mody@cavium.com>
Sat, 18 Mar 2017 06:53:34 +0000 (23:53 -0700)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 4 Apr 2017 16:59:45 +0000 (18:59 +0200)
Typo in ecore_sriov.c; Ending line with , instead of ;

Fixes: 379cbb2c446a ("net/qede/base: semantic change")

Signed-off-by: Rasesh Mody <rasesh.mody@cavium.com>
drivers/net/qede/base/ecore_sriov.c

index b85055b..6912cf8 100644 (file)
@@ -2016,7 +2016,7 @@ static void ecore_iov_vf_mbx_start_rxq(struct ecore_hwfn *p_hwfn,
        params.queue_id = (u8)vf->vf_queues[req->rx_qid].fw_rx_qid;
        params.vf_qid = req->rx_qid;
        params.vport_id = vf->vport_id;
-       params.stats_id = vf->abs_vf_id + 0x10,
+       params.stats_id = vf->abs_vf_id + 0x10;
        params.sb = req->hw_sb;
        params.sb_idx = req->sb_index;
 
@@ -2121,7 +2121,7 @@ static void ecore_iov_vf_mbx_start_txq(struct ecore_hwfn *p_hwfn,
        params.queue_id = (u8)vf->vf_queues[req->tx_qid].fw_tx_qid;
        params.qzone_id = (u8)vf->vf_queues[req->tx_qid].fw_tx_qid;
        params.vport_id = vf->vport_id;
-       params.stats_id = vf->abs_vf_id + 0x10,
+       params.stats_id = vf->abs_vf_id + 0x10;
        params.sb = req->hw_sb;
        params.sb_idx = req->sb_index;