#ifndef TRAFGEN_L2_H #define TRAFGEN_L2_H enum eth_field { ETH_DST_ADDR, ETH_SRC_ADDR, ETH_TYPE, }; enum pause_field { PAUSE_OPCODE, PAUSE_TIME, }; enum arp_field { ARP_HTYPE, ARP_PTYPE, ARP_HLEN, ARP_PLEN, ARP_OPER, ARP_SHA, ARP_SPA, ARP_THA, ARP_TPA, }; enum vlan_field { VLAN_TPID, VLAN_TCI, VLAN_PCP, VLAN_DEI, VLAN_VID, VLAN_ETYPE, }; enum mpls_field { MPLS_LABEL, MPLS_TC, MPLS_LAST, MPLS_TTL, }; extern void protos_l2_init(void); #endif /* TRAFGEN_L2_H */ xt.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/Documentation/i2c
diff options
context:
space:
mode:
authorVishal Thanki <vishalthanki@gmail.com>2016-09-26 15:34:19 +0200
committerMark Brown <broonie@kernel.org>2016-09-26 09:35:10 -0700
commitc14c59f2e9ca2dc3ddb3af67b71a11feaaacbbce (patch)
tree5ed3662fc2b6fb36a2630daf75055119567e3a1f /Documentation/i2c
parent29b4817d4018df78086157ea3a55c1d9424a7cfc (diff)
ASoC: ak4104: Limit the supported sample rates
Currently the driver exposes range of sample rates between 8KHz to 192KHz as a part of dai_driver. This does not hold true as the limited number sample rates are allowed in hw_params DAI callback. This patch limits the sample rates exposed via dai_driver. Signed-off-by: Vishal Thanki <vishalthanki@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/i2c')