MVPP2_PRS_BYTE_TO_WORD  141 drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c 	pe->tcam[MVPP2_PRS_BYTE_TO_WORD(offs)] &= ~(0xff << pos);
MVPP2_PRS_BYTE_TO_WORD  142 drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c 	pe->tcam[MVPP2_PRS_BYTE_TO_WORD(offs)] &= ~(MVPP2_PRS_TCAM_EN(0xff) << pos);
MVPP2_PRS_BYTE_TO_WORD  143 drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c 	pe->tcam[MVPP2_PRS_BYTE_TO_WORD(offs)] |= byte << pos;
MVPP2_PRS_BYTE_TO_WORD  144 drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c 	pe->tcam[MVPP2_PRS_BYTE_TO_WORD(offs)] |= MVPP2_PRS_TCAM_EN(enable << pos);
MVPP2_PRS_BYTE_TO_WORD  154 drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c 	*byte = (pe->tcam[MVPP2_PRS_BYTE_TO_WORD(offs)] >> pos) & 0xff;
MVPP2_PRS_BYTE_TO_WORD  155 drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c 	*enable = (pe->tcam[MVPP2_PRS_BYTE_TO_WORD(offs)] >> (pos + 16)) & 0xff;
MVPP2_PRS_BYTE_TO_WORD  164 drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c 	tcam_data = pe->tcam[MVPP2_PRS_BYTE_TO_WORD(offs)] & 0xffff;