qede: format qede{,_vf}_ethtool_ops
authorAlexander Lobakin <alobakin@marvell.com>
Mon, 20 Jul 2020 18:08:08 +0000 (21:08 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 21 Jul 2020 00:59:44 +0000 (17:59 -0700)
Prior to adding new callbacks, format qede ethtool_ops structs to make
declarations more fancy and readable.

Signed-off-by: Alexander Lobakin <alobakin@marvell.com>
Signed-off-by: Igor Russkikh <irusskikh@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qlogic/qede/qede_ethtool.c

index 7a98530..fdccceb 100644 (file)
@@ -2032,78 +2032,77 @@ err:
 }
 
 static const struct ethtool_ops qede_ethtool_ops = {
-       .supported_coalesce_params = ETHTOOL_COALESCE_USECS,
-       .get_link_ksettings = qede_get_link_ksettings,
-       .set_link_ksettings = qede_set_link_ksettings,
-       .get_drvinfo = qede_get_drvinfo,
-       .get_regs_len = qede_get_regs_len,
-       .get_regs = qede_get_regs,
-       .get_wol = qede_get_wol,
-       .set_wol = qede_set_wol,
-       .get_msglevel = qede_get_msglevel,
-       .set_msglevel = qede_set_msglevel,
-       .nway_reset = qede_nway_reset,
-       .get_link = qede_get_link,
-       .get_coalesce = qede_get_coalesce,
-       .set_coalesce = qede_set_coalesce,
-       .get_ringparam = qede_get_ringparam,
-       .set_ringparam = qede_set_ringparam,
-       .get_pauseparam = qede_get_pauseparam,
-       .set_pauseparam = qede_set_pauseparam,
-       .get_strings = qede_get_strings,
-       .set_phys_id = qede_set_phys_id,
-       .get_ethtool_stats = qede_get_ethtool_stats,
-       .get_priv_flags = qede_get_priv_flags,
-       .set_priv_flags = qede_set_priv_flags,
-       .get_sset_count = qede_get_sset_count,
-       .get_rxnfc = qede_get_rxnfc,
-       .set_rxnfc = qede_set_rxnfc,
-       .get_rxfh_indir_size = qede_get_rxfh_indir_size,
-       .get_rxfh_key_size = qede_get_rxfh_key_size,
-       .get_rxfh = qede_get_rxfh,
-       .set_rxfh = qede_set_rxfh,
-       .get_ts_info = qede_get_ts_info,
-       .get_channels = qede_get_channels,
-       .set_channels = qede_set_channels,
-       .self_test = qede_self_test,
-       .get_module_info = qede_get_module_info,
-       .get_module_eeprom = qede_get_module_eeprom,
-       .get_eee = qede_get_eee,
-       .set_eee = qede_set_eee,
-
-       .get_tunable = qede_get_tunable,
-       .set_tunable = qede_set_tunable,
-       .flash_device = qede_flash_device,
-       .get_dump_flag = qede_get_dump_flag,
-       .get_dump_data = qede_get_dump_data,
-       .set_dump = qede_set_dump,
+       .supported_coalesce_params      = ETHTOOL_COALESCE_USECS,
+       .get_link_ksettings             = qede_get_link_ksettings,
+       .set_link_ksettings             = qede_set_link_ksettings,
+       .get_drvinfo                    = qede_get_drvinfo,
+       .get_regs_len                   = qede_get_regs_len,
+       .get_regs                       = qede_get_regs,
+       .get_wol                        = qede_get_wol,
+       .set_wol                        = qede_set_wol,
+       .get_msglevel                   = qede_get_msglevel,
+       .set_msglevel                   = qede_set_msglevel,
+       .nway_reset                     = qede_nway_reset,
+       .get_link                       = qede_get_link,
+       .get_coalesce                   = qede_get_coalesce,
+       .set_coalesce                   = qede_set_coalesce,
+       .get_ringparam                  = qede_get_ringparam,
+       .set_ringparam                  = qede_set_ringparam,
+       .get_pauseparam                 = qede_get_pauseparam,
+       .set_pauseparam                 = qede_set_pauseparam,
+       .get_strings                    = qede_get_strings,
+       .set_phys_id                    = qede_set_phys_id,
+       .get_ethtool_stats              = qede_get_ethtool_stats,
+       .get_priv_flags                 = qede_get_priv_flags,
+       .set_priv_flags                 = qede_set_priv_flags,
+       .get_sset_count                 = qede_get_sset_count,
+       .get_rxnfc                      = qede_get_rxnfc,
+       .set_rxnfc                      = qede_set_rxnfc,
+       .get_rxfh_indir_size            = qede_get_rxfh_indir_size,
+       .get_rxfh_key_size              = qede_get_rxfh_key_size,
+       .get_rxfh                       = qede_get_rxfh,
+       .set_rxfh                       = qede_set_rxfh,
+       .get_ts_info                    = qede_get_ts_info,
+       .get_channels                   = qede_get_channels,
+       .set_channels                   = qede_set_channels,
+       .self_test                      = qede_self_test,
+       .get_module_info                = qede_get_module_info,
+       .get_module_eeprom              = qede_get_module_eeprom,
+       .get_eee                        = qede_get_eee,
+       .set_eee                        = qede_set_eee,
+       .get_tunable                    = qede_get_tunable,
+       .set_tunable                    = qede_set_tunable,
+       .flash_device                   = qede_flash_device,
+       .get_dump_flag                  = qede_get_dump_flag,
+       .get_dump_data                  = qede_get_dump_data,
+       .set_dump                       = qede_set_dump,
 };
 
 static const struct ethtool_ops qede_vf_ethtool_ops = {
-       .supported_coalesce_params = ETHTOOL_COALESCE_USECS,
-       .get_link_ksettings = qede_get_link_ksettings,
-       .get_drvinfo = qede_get_drvinfo,
-       .get_msglevel = qede_get_msglevel,
-       .set_msglevel = qede_set_msglevel,
-       .get_link = qede_get_link,
-       .get_coalesce = qede_get_coalesce,
-       .set_coalesce = qede_set_coalesce,
-       .get_ringparam = qede_get_ringparam,
-       .set_ringparam = qede_set_ringparam,
-       .get_strings = qede_get_strings,
-       .get_ethtool_stats = qede_get_ethtool_stats,
-       .get_priv_flags = qede_get_priv_flags,
-       .get_sset_count = qede_get_sset_count,
-       .get_rxnfc = qede_get_rxnfc,
-       .set_rxnfc = qede_set_rxnfc,
-       .get_rxfh_indir_size = qede_get_rxfh_indir_size,
-       .get_rxfh_key_size = qede_get_rxfh_key_size,
-       .get_rxfh = qede_get_rxfh,
-       .set_rxfh = qede_set_rxfh,
-       .get_channels = qede_get_channels,
-       .set_channels = qede_set_channels,
-       .get_tunable = qede_get_tunable,
-       .set_tunable = qede_set_tunable,
+       .supported_coalesce_params      = ETHTOOL_COALESCE_USECS,
+       .get_link_ksettings             = qede_get_link_ksettings,
+       .get_drvinfo                    = qede_get_drvinfo,
+       .get_msglevel                   = qede_get_msglevel,
+       .set_msglevel                   = qede_set_msglevel,
+       .get_link                       = qede_get_link,
+       .get_coalesce                   = qede_get_coalesce,
+       .set_coalesce                   = qede_set_coalesce,
+       .get_ringparam                  = qede_get_ringparam,
+       .set_ringparam                  = qede_set_ringparam,
+       .get_strings                    = qede_get_strings,
+       .get_ethtool_stats              = qede_get_ethtool_stats,
+       .get_priv_flags                 = qede_get_priv_flags,
+       .get_sset_count                 = qede_get_sset_count,
+       .get_rxnfc                      = qede_get_rxnfc,
+       .set_rxnfc                      = qede_set_rxnfc,
+       .get_rxfh_indir_size            = qede_get_rxfh_indir_size,
+       .get_rxfh_key_size              = qede_get_rxfh_key_size,
+       .get_rxfh                       = qede_get_rxfh,
+       .set_rxfh                       = qede_set_rxfh,
+       .get_channels                   = qede_get_channels,
+       .set_channels                   = qede_set_channels,
+       .get_tunable                    = qede_get_tunable,
+       .set_tunable                    = qede_set_tunable,
 };
 
 void qede_set_ethtool_ops(struct net_device *dev)