diff --git a/src/udev/net/ethtool-util.h b/src/udev/net/ethtool-util.h index a4beedf00f0..27ce0e0abad 100644 --- a/src/udev/net/ethtool-util.h +++ b/src/udev/net/ethtool-util.h @@ -29,8 +29,8 @@ struct link_config; /* we can't use DUPLEX_ prefix, as it * clashes with */ typedef enum Duplex { - DUP_FULL, - DUP_HALF, + DUP_HALF = DUPLEX_HALF, + DUP_FULL = DUPLEX_FULL, _DUP_MAX, _DUP_INVALID = -1 } Duplex;