DPDK patches and discussions
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Cc: Stephen Hemminger <stephen@networkplumber.org>
Subject: [dpdk-dev] [PATCH 5/6] szedata: make eth_dev_ops const
Date: Mon, 21 Mar 2016 10:53:28 -0700	[thread overview]
Message-ID: <1458582809-19628-6-git-send-email-stephen@networkplumber.org> (raw)
In-Reply-To: <1458582809-19628-1-git-send-email-stephen@networkplumber.org>

All usage of eth_dev_ops should be const.
And fix the indentation

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 drivers/net/szedata2/rte_eth_szedata2.c | 48 ++++++++++++++++-----------------
 1 file changed, 24 insertions(+), 24 deletions(-)

diff --git a/drivers/net/szedata2/rte_eth_szedata2.c b/drivers/net/szedata2/rte_eth_szedata2.c
index 81c806e..1d6a600 100644
--- a/drivers/net/szedata2/rte_eth_szedata2.c
+++ b/drivers/net/szedata2/rte_eth_szedata2.c
@@ -1317,30 +1317,30 @@ eth_allmulticast_disable(struct rte_eth_dev *dev)
 	cgmii_ibuf_mac_mode_write(ibuf, SZEDATA2_MAC_CHMODE_ONLY_VALID);
 }
 
-static struct eth_dev_ops ops = {
-		.dev_start          = eth_dev_start,
-		.dev_stop           = eth_dev_stop,
-		.dev_set_link_up    = eth_dev_set_link_up,
-		.dev_set_link_down  = eth_dev_set_link_down,
-		.dev_close          = eth_dev_close,
-		.dev_configure      = eth_dev_configure,
-		.dev_infos_get      = eth_dev_info,
-		.promiscuous_enable   = eth_promiscuous_enable,
-		.promiscuous_disable  = eth_promiscuous_disable,
-		.allmulticast_enable  = eth_allmulticast_enable,
-		.allmulticast_disable = eth_allmulticast_disable,
-		.rx_queue_start     = eth_rx_queue_start,
-		.rx_queue_stop      = eth_rx_queue_stop,
-		.tx_queue_start     = eth_tx_queue_start,
-		.tx_queue_stop      = eth_tx_queue_stop,
-		.rx_queue_setup     = eth_rx_queue_setup,
-		.tx_queue_setup     = eth_tx_queue_setup,
-		.rx_queue_release   = eth_rx_queue_release,
-		.tx_queue_release   = eth_tx_queue_release,
-		.link_update        = eth_link_update,
-		.stats_get          = eth_stats_get,
-		.stats_reset        = eth_stats_reset,
-		.mac_addr_set       = eth_mac_addr_set,
+static const struct eth_dev_ops ops = {
+	.dev_start          = eth_dev_start,
+	.dev_stop           = eth_dev_stop,
+	.dev_set_link_up    = eth_dev_set_link_up,
+	.dev_set_link_down  = eth_dev_set_link_down,
+	.dev_close          = eth_dev_close,
+	.dev_configure      = eth_dev_configure,
+	.dev_infos_get      = eth_dev_info,
+	.promiscuous_enable   = eth_promiscuous_enable,
+	.promiscuous_disable  = eth_promiscuous_disable,
+	.allmulticast_enable  = eth_allmulticast_enable,
+	.allmulticast_disable = eth_allmulticast_disable,
+	.rx_queue_start     = eth_rx_queue_start,
+	.rx_queue_stop      = eth_rx_queue_stop,
+	.tx_queue_start     = eth_tx_queue_start,
+	.tx_queue_stop      = eth_tx_queue_stop,
+	.rx_queue_setup     = eth_rx_queue_setup,
+	.tx_queue_setup     = eth_tx_queue_setup,
+	.rx_queue_release   = eth_rx_queue_release,
+	.tx_queue_release   = eth_tx_queue_release,
+	.link_update        = eth_link_update,
+	.stats_get          = eth_stats_get,
+	.stats_reset        = eth_stats_reset,
+	.mac_addr_set       = eth_mac_addr_set,
 };
 
 /*
-- 
2.1.4

  parent reply	other threads:[~2016-03-21 17:53 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-21 17:53 [dpdk-dev] [PATCH 0/6] " Stephen Hemminger
2016-03-21 17:53 ` [dpdk-dev] [PATCH 1/6] bonding: " Stephen Hemminger
2016-03-21 17:53 ` [dpdk-dev] [PATCH 2/6] cxgbe: " Stephen Hemminger
2016-03-21 17:53 ` [dpdk-dev] [PATCH 3/6] bnx2x: " Stephen Hemminger
2016-03-21 17:53 ` [dpdk-dev] [PATCH 4/6] nfp: " Stephen Hemminger
2016-03-21 17:53 ` Stephen Hemminger [this message]
2016-03-21 17:53 ` [dpdk-dev] [PATCH 6/6] mpipe: " Stephen Hemminger
2016-03-23 12:09 ` [dpdk-dev] [PATCH 0/6] " Bruce Richardson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1458582809-19628-6-git-send-email-stephen@networkplumber.org \
    --to=stephen@networkplumber.org \
    --cc=dev@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).