diff options
author | Bruce Allan <bruce.w.allan@intel.com> | 2019-02-26 19:35:11 -0500 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2019-03-22 11:19:17 -0400 |
commit | c8b7abdd7d8e4696d5ffa25cebaa82931e0e39b3 (patch) | |
tree | b2d38002c355d0c8146da0036e30f485387bcc27 /drivers/net/ethernet/intel/ice/ice_lib.c | |
parent | 60dcc39ea338dbc9d33dad8f788320950f85e0f3 (diff) |
ice: fix some function prototype and signature style issues
Put the return type on a separate line for function prototypes and
signatures that would exceed the 80-character limit if both were on
the same line.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_lib.c')
-rw-r--r-- | drivers/net/ethernet/intel/ice/ice_lib.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_lib.c b/drivers/net/ethernet/intel/ice/ice_lib.c index 5d364b79eb4d..87e57328a81b 100644 --- a/drivers/net/ethernet/intel/ice/ice_lib.c +++ b/drivers/net/ethernet/intel/ice/ice_lib.c | |||
@@ -2107,8 +2107,9 @@ err_alloc_q_ids: | |||
2107 | * @rst_src: reset source | 2107 | * @rst_src: reset source |
2108 | * @rel_vmvf_num: Relative id of VF/VM | 2108 | * @rel_vmvf_num: Relative id of VF/VM |
2109 | */ | 2109 | */ |
2110 | int ice_vsi_stop_lan_tx_rings(struct ice_vsi *vsi, | 2110 | int |
2111 | enum ice_disq_rst_src rst_src, u16 rel_vmvf_num) | 2111 | ice_vsi_stop_lan_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src, |
2112 | u16 rel_vmvf_num) | ||
2112 | { | 2113 | { |
2113 | return ice_vsi_stop_tx_rings(vsi, rst_src, rel_vmvf_num, vsi->tx_rings, | 2114 | return ice_vsi_stop_tx_rings(vsi, rst_src, rel_vmvf_num, vsi->tx_rings, |
2114 | 0); | 2115 | 0); |