#ifndef TRAFGEN_L2_H #define TRAFGEN_L2_H enum eth_field { ETH_DST_ADDR, ETH_SRC_ADDR, ETH_TYPE, }; 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 */ k rel='vcs-git' href='http:///git.distanz.ch/cgit.cgi/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2016-02-25 23:02:04 +0100
committerMark Brown <broonie@kernel.org>2016-02-26 11:05:56 +0900
commitaa3e838869d494c437c693b54d12fe02b96a0aa1 (patch)
treefdbcf747035b89cd6dc27418b990d966ca422039
parent92e963f50fc74041b5e9e744c330dca48e04f08d (diff)
ASoC: pxa: remove unused variable
As pointed out by Zhangfei Gao, the sspa_div variable in brownstone_wm8994_hw_params() is completely unused, so as a cleanup following a prior patch, this removes both the variable and the division. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Mark Brown <broonie@kernel.org>