Searched refs:config_word (Results 1 – 3 of 3) sorted by relevance
41 #define netxen_gb_tx_flowctl(config_word) \ argument42 ((config_word) |= 1 << 4)43 #define netxen_gb_rx_flowctl(config_word) \ argument44 ((config_word) |= 1 << 5)45 #define netxen_gb_tx_reset_pb(config_word) \ argument46 ((config_word) |= 1 << 16)47 #define netxen_gb_rx_reset_pb(config_word) \ argument48 ((config_word) |= 1 << 17)49 #define netxen_gb_tx_reset_mac(config_word) \ argument50 ((config_word) |= 1 << 18)[all …]
230 #define netxen_set_msg_peg_id(config_word, val) \ argument231 ((config_word) &= ~3, (config_word) |= val & 3)232 #define netxen_set_msg_privid(config_word) \ argument233 ((config_word) |= 1 << 2)234 #define netxen_set_msg_count(config_word, val) \ argument235 ((config_word) &= ~(0x7fff<<3), (config_word) |= (val & 0x7fff) << 3)236 #define netxen_set_msg_ctxid(config_word, val) \ argument237 ((config_word) &= ~(0x3ff<<18), (config_word) |= (val & 0x3ff) << 18)238 #define netxen_set_msg_opcode(config_word, val) \ argument239 ((config_word) &= ~(0xf<<28), (config_word) |= (val & 0xf) << 28)
817 #define qlcnic_gb_rx_flowctl(config_word) \ argument818 ((config_word) |= 1 << 5)819 #define qlcnic_gb_get_rx_flowctl(config_word) \ argument820 _qlcnic_crb_get_bit((config_word), 5)821 #define qlcnic_gb_unset_rx_flowctl(config_word) \ argument822 ((config_word) &= ~(1 << 5))828 #define qlcnic_gb_set_gb0_mask(config_word) \ argument829 ((config_word) |= 1 << 0)830 #define qlcnic_gb_set_gb1_mask(config_word) \ argument831 ((config_word) |= 1 << 2)[all …]