cxgb4: Use symbolic constant for VLAN priority calculation

Signed-off-by: Hariprasad Shenai <hariprasad@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Hariprasad Shenai 2015-12-17 13:45:07 +05:30 committed by David S. Miller
parent 301c141d6a
commit e41e282428
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ struct l2t_data {
static inline unsigned int vlan_prio(const struct l2t_entry *e)
{
return e->vlan >> 13;
return e->vlan >> VLAN_PRIO_SHIFT;
}
static inline void l2t_hold(struct l2t_data *d, struct l2t_entry *e)