![]() |
|
|||
0001 /* SPDX-License-Identifier: GPL-2.0-only 0002 * Copyright (C) 2014 Broadcom Corporation 0003 */ 0004 0005 /* Included by drivers/net/ethernet/broadcom/bcmsysport.c and 0006 * net/dsa/tag_brcm.c 0007 */ 0008 #ifndef _NET_DSA_BRCM_H 0009 #define _NET_DSA_BRCM_H 0010 0011 /* Broadcom tag specific helpers to insert and extract queue/port number */ 0012 #define BRCM_TAG_SET_PORT_QUEUE(p, q) ((p) << 8 | q) 0013 #define BRCM_TAG_GET_PORT(v) ((v) >> 8) 0014 #define BRCM_TAG_GET_QUEUE(v) ((v) & 0xff) 0015 0016 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |