mlxsw: spectrum: Use DECLARE_BITMAP() macro
There is a macro to do this kind of declarations, so use it. Signed-off-by: Ido Schimmel <idosch@mellanox.com> Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7117a570b9
commit
d8651fd886
@ -155,17 +155,17 @@ struct mlxsw_sp_sb {
|
|||||||
struct mlxsw_sp {
|
struct mlxsw_sp {
|
||||||
struct {
|
struct {
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
unsigned long mapped[BITS_TO_LONGS(MLXSW_SP_VFID_PORT_MAX)];
|
DECLARE_BITMAP(mapped, MLXSW_SP_VFID_PORT_MAX);
|
||||||
} port_vfids;
|
} port_vfids;
|
||||||
struct {
|
struct {
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
unsigned long mapped[BITS_TO_LONGS(MLXSW_SP_VFID_BR_MAX)];
|
DECLARE_BITMAP(mapped, MLXSW_SP_VFID_BR_MAX);
|
||||||
} br_vfids;
|
} br_vfids;
|
||||||
struct {
|
struct {
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
unsigned long mapped[BITS_TO_LONGS(MLXSW_SP_MID_MAX)];
|
DECLARE_BITMAP(mapped, MLXSW_SP_MID_MAX);
|
||||||
} br_mids;
|
} br_mids;
|
||||||
unsigned long active_fids[BITS_TO_LONGS(VLAN_N_VID)];
|
DECLARE_BITMAP(active_fids, VLAN_N_VID);
|
||||||
struct mlxsw_sp_port **ports;
|
struct mlxsw_sp_port **ports;
|
||||||
struct mlxsw_core *core;
|
struct mlxsw_core *core;
|
||||||
const struct mlxsw_bus_info *bus_info;
|
const struct mlxsw_bus_info *bus_info;
|
||||||
|
Loading…
Reference in New Issue
Block a user