diff mbox series

[ovs-dev] netdev-dpdk: replace uint8_t with dpdk_port_t

Message ID 1508502650-27557-1-git-send-email-mark.b.kavanagh@intel.com
State Accepted
Headers show
Series [ovs-dev] netdev-dpdk: replace uint8_t with dpdk_port_t | expand

Commit Message

Mark Kavanagh Oct. 20, 2017, 12:30 p.m. UTC
netdev_dpdk_detach() declares a 'port_id' variable, of type uint8_t.
This variable should instead be of type dpdk_port_t.

Fixes: bb37956ac ("netdev-dpdk: Use uint8_t for port_id.")
CC: Ilya Maximets <i.maximets@samsung.com>
Signed-off-by: Mark Kavanagh <mark.b.kavanagh@intel.com>
---
 lib/netdev-dpdk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
1.9.3
diff mbox series

Patch

diff --git a/lib/netdev-dpdk.c b/lib/netdev-dpdk.c
index c60f46f..1f6345d 100644
--- a/lib/netdev-dpdk.c
+++ b/lib/netdev-dpdk.c
@@ -2549,7 +2549,7 @@  netdev_dpdk_detach(struct unixctl_conn *conn, int argc OVS_UNUSED,
 {
     int ret;
     char *response;
-    uint8_t port_id;
+    dpdk_port_t port_id;
     char devname[RTE_ETH_NAME_MAX_LEN];
     struct netdev_dpdk *dev;