i40e: Use #define for the VSI connection type
authorNeerav Parikh <neerav.parikh@intel.com>
Sat, 24 Jan 2015 09:58:38 +0000 (09:58 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Tue, 24 Feb 2015 01:11:57 +0000 (17:11 -0800)
Use #defined VSI connection type values instead of using magic numbers.

Change-ID: I2f6cf7bf394d391e1c0fe61779e9e4ad8858154a
Signed-off-by: Neerav Parikh <neerav.parikh@intel.com>
Tested-by: Jim Young <james.m.young@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/i40e/i40e_fcoe.c
drivers/net/ethernet/intel/i40e/i40e_main.c

index 27c206e62da71f0159361bca2703a1e367aeffcb..8b5bf16d3270abb08d469d5254cf9e8556535058 100644 (file)
@@ -381,7 +381,7 @@ int i40e_fcoe_vsi_init(struct i40e_vsi *vsi, struct i40e_vsi_context *ctxt)
        ctxt->pf_num = hw->pf_id;
        ctxt->vf_num = 0;
        ctxt->uplink_seid = vsi->uplink_seid;
-       ctxt->connection_type = 0x1;
+       ctxt->connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
        ctxt->flags = I40E_AQ_VSI_TYPE_PF;
 
        /* FCoE VSI would need the following sections */
index 10ad1eec21f51f87f1f6e9b683163a57706d14a9..e3597cb36e3012155d42922bae0ff2ef973c2e93 100644 (file)
@@ -7863,7 +7863,7 @@ static int i40e_add_vsi(struct i40e_vsi *vsi)
                ctxt.pf_num = hw->pf_id;
                ctxt.vf_num = 0;
                ctxt.uplink_seid = vsi->uplink_seid;
-               ctxt.connection_type = 0x1;     /* regular data port */
+               ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
                ctxt.flags = I40E_AQ_VSI_TYPE_PF;
                ctxt.info.valid_sections |=
                                cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
@@ -7876,7 +7876,7 @@ static int i40e_add_vsi(struct i40e_vsi *vsi)
                ctxt.pf_num = hw->pf_id;
                ctxt.vf_num = 0;
                ctxt.uplink_seid = vsi->uplink_seid;
-               ctxt.connection_type = 0x1;     /* regular data port */
+               ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
                ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
 
                ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
@@ -7895,7 +7895,7 @@ static int i40e_add_vsi(struct i40e_vsi *vsi)
                ctxt.pf_num = hw->pf_id;
                ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
                ctxt.uplink_seid = vsi->uplink_seid;
-               ctxt.connection_type = 0x1;     /* regular data port */
+               ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
                ctxt.flags = I40E_AQ_VSI_TYPE_VF;
 
                ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
This page took 0.031379 seconds and 5 git commands to generate.