ethdev: use constants for link state
[dpdk.git] / examples / multi_process / client_server_mp / mp_server / init.c
index 1078ffd..ecb61c6 100644 (file)
@@ -226,7 +226,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;
                        }