remove unused ring includes
[dpdk.git] / examples / multi_process / symmetric_mp / main.c
index 931c94f..d30ff4a 100644 (file)
@@ -64,7 +64,6 @@
 #include <rte_debug.h>
 #include <rte_atomic.h>
 #include <rte_branch_prediction.h>
-#include <rte_ring.h>
 #include <rte_debug.h>
 #include <rte_interrupts.h>
 #include <rte_pci.h>
@@ -196,7 +195,7 @@ smp_parse_args(int argc, char **argv)
        ret = optind-1;
        optind = 0; /* reset getopt lib */
 
-       return (ret);
+       return ret;
 }
 
 /*
@@ -388,7 +387,7 @@ check_all_ports_link_status(uint8_t port_num, uint32_t port_mask)
                                continue;
                        }
                        /* clear all_ports_up flag if any link down */
-                       if (link.link_status == 0) {
+                       if (link.link_status == ETH_LINK_DOWN) {
                                all_ports_up = 0;
                                break;
                        }