mlxsw: core: Remove initialization to false of mlxsw_listener struct
authorJiri Pirko <jiri@mellanox.com>
Sun, 23 Feb 2020 07:31:40 +0000 (08:31 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 24 Feb 2020 00:06:59 +0000 (16:06 -0800)
No need to initialize to false, so remove it.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/core.h

index 76c0d6e..c5890e3 100644 (file)
@@ -97,7 +97,6 @@ struct mlxsw_listener {
                .unreg_action = MLXSW_REG_HPKT_ACTION_##_unreg_action,  \
                .trap_group = MLXSW_REG_HTGT_TRAP_GROUP_##_trap_group,  \
                .is_ctrl = _is_ctrl,                                    \
-               .is_event = false,                                      \
        }
 
 #define MLXSW_EVENTL(_func, _trap_id, _trap_group)                     \
@@ -110,7 +109,6 @@ struct mlxsw_listener {
                },                                                      \
                .action = MLXSW_REG_HPKT_ACTION_TRAP_TO_CPU,            \
                .trap_group = MLXSW_REG_HTGT_TRAP_GROUP_##_trap_group,  \
-               .is_ctrl = false,                                       \
                .is_event = true,                                       \
        }