]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
i40e: fix whitespace
authorMitch Williams <mitch.a.williams@intel.com>
Fri, 6 Nov 2015 23:26:10 +0000 (15:26 -0800)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Thu, 3 Dec 2015 10:23:37 +0000 (02:23 -0800)
Operators should have spaces around them.

Change-ID: I64735e9aa8618b9a5059a87ace1c999d6d3bfcfb
Signed-off-by: Mitch Williams <mitch.a.williams@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c

index 30a1d300c060a8e6345f0f6edffd657d3fcd5305..b3bd81c3e1ceec5d704420adc966f966e10df98f 100644 (file)
@@ -290,8 +290,8 @@ static void i40e_config_irq_link_list(struct i40e_vf *vf, u16 vsi_id,
        next_q = find_first_bit(&linklistmap,
                                (I40E_MAX_VSI_QP *
                                 I40E_VIRTCHNL_SUPPORTED_QTYPES));
-       vsi_queue_id = next_q/I40E_VIRTCHNL_SUPPORTED_QTYPES;
-       qtype = next_q%I40E_VIRTCHNL_SUPPORTED_QTYPES;
+       vsi_queue_id = next_q / I40E_VIRTCHNL_SUPPORTED_QTYPES;
+       qtype = next_q % I40E_VIRTCHNL_SUPPORTED_QTYPES;
        pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id);
        reg = ((qtype << I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_SHIFT) | pf_queue_id);