aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tehuti.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-08-23 14:20:03 -0400
committerDavid S. Miller <davem@davemloft.net>2010-08-25 18:35:43 -0400
commitc061b18df0f1fe3f50fe451dbbdc9ede3c19701a (patch)
tree91508aff083ab7a93d1e7f3b6eb933059d1a2776 /drivers/net/tehuti.c
parent31018e068edb9eed740bec5cf14802c3c676c9ee (diff)
drivers/net: Remove address use from assignments of function pointers
"foo = &function" is more commonly written "foo = function" Done with coccinelle script: // <smpl> @r@ identifier f; @@ f(...) { ... } @@ identifier r.f; @@ - &f + f // </smpl> drivers/net/tehuti.c used a function and struct with the same name, the function was renamed. Compile tested x86 only. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tehuti.c')
-rw-r--r--drivers/net/tehuti.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/tehuti.c b/drivers/net/tehuti.c
index d808f95a87ca..3128d6a8e9ce 100644
--- a/drivers/net/tehuti.c
+++ b/drivers/net/tehuti.c
@@ -92,7 +92,7 @@ static void bdx_rx_free(struct bdx_priv *priv);
92static void bdx_tx_free(struct bdx_priv *priv); 92static void bdx_tx_free(struct bdx_priv *priv);
93 93
94/* Definitions needed by bdx_probe */ 94/* Definitions needed by bdx_probe */
95static void bdx_ethtool_ops(struct net_device *netdev); 95static void bdx_set_ethtool_ops(struct net_device *netdev);
96 96
97/************************************************************************* 97/*************************************************************************
98 * Print Info * 98 * Print Info *
@@ -2005,7 +2005,7 @@ bdx_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
2005 ndev->netdev_ops = &bdx_netdev_ops; 2005 ndev->netdev_ops = &bdx_netdev_ops;
2006 ndev->tx_queue_len = BDX_NDEV_TXQ_LEN; 2006 ndev->tx_queue_len = BDX_NDEV_TXQ_LEN;
2007 2007
2008 bdx_ethtool_ops(ndev); /* ethtool interface */ 2008 bdx_set_ethtool_ops(ndev); /* ethtool interface */
2009 2009
2010 /* these fields are used for info purposes only 2010 /* these fields are used for info purposes only
2011 * so we can have them same for all ports of the board */ 2011 * so we can have them same for all ports of the board */
@@ -2410,10 +2410,10 @@ static void bdx_get_ethtool_stats(struct net_device *netdev,
2410} 2410}
2411 2411
2412/* 2412/*
2413 * bdx_ethtool_ops - ethtool interface implementation 2413 * bdx_set_ethtool_ops - ethtool interface implementation
2414 * @netdev 2414 * @netdev
2415 */ 2415 */
2416static void bdx_ethtool_ops(struct net_device *netdev) 2416static void bdx_set_ethtool_ops(struct net_device *netdev)
2417{ 2417{
2418 static const struct ethtool_ops bdx_ethtool_ops = { 2418 static const struct ethtool_ops bdx_ethtool_ops = {
2419 .get_settings = bdx_get_settings, 2419 .get_settings = bdx_get_settings,