#ifndef VLAN_H #define VLAN_H #include #include static inline uint16_t vlan_tci2prio(uint16_t tci) { return (tci & 0xe000) >> 13; } static inline uint16_t vlan_tci2cfi(uint16_t tci) { return (tci & 0x1000) >> 12; } static inline uint16_t vlan_tci2vid(uint16_t tci) { return tci & 0x0fff; } #endif x/net-next.git/atom/net/openvswitch?h=nds-private-remove' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPan Bian <bianpan2016@163.com>2016-12-05 19:37:24 +0800
committerJiri Kosina <jkosina@suse.cz>2016-12-09 13:46:29 +0100
commitc60fa555b11b25386b355c141d90cbee361c3eec (patch)
tree144f457fbc9ebfcb02a4c98a4009fd0f3b402d62 /net/openvswitch
parent2ae3986b84e9d325bc92a1efbcf0c6b0f5016b35 (diff)
HID: usbhid: fix improper return value
Function hid_post_reset() should return negative error codes on failures. However, in its implementation, it incorrectly returns 1. This patch fixes the bug, returning proper error codes on failures. Signed-off-by: Pan Bian <bianpan2016@163.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'net/openvswitch')