Lines Matching refs:iface

1947 	struct wma_txrx_node *iface;  in wma_vdev_update_pause_bitmap()  local
1957 iface = &wma->interfaces[vdev_id]; in wma_vdev_update_pause_bitmap()
1959 if (!iface) { in wma_vdev_update_pause_bitmap()
1964 iface->pause_bitmap = value; in wma_vdev_update_pause_bitmap()
1977 struct wma_txrx_node *iface; in wma_vdev_get_pause_bitmap() local
1982 iface = &wma->interfaces[vdev_id]; in wma_vdev_get_pause_bitmap()
1984 if (!iface) { in wma_vdev_get_pause_bitmap()
1989 return iface->pause_bitmap; in wma_vdev_get_pause_bitmap()
2001 struct wma_txrx_node *iface; in wma_vdev_is_device_in_low_pwr_mode() local
2006 iface = &wma->interfaces[vdev_id]; in wma_vdev_is_device_in_low_pwr_mode()
2008 if (!iface) { in wma_vdev_is_device_in_low_pwr_mode()
2013 return iface->in_bmps || wma->in_imps; in wma_vdev_is_device_in_low_pwr_mode()
2030 struct wma_txrx_node *iface; in wma_vdev_get_dtim_period() local
2037 iface = &wma->interfaces[vdev_id]; in wma_vdev_get_dtim_period()
2039 if (!iface) in wma_vdev_get_dtim_period()
2042 *value = iface->dtimPeriod; in wma_vdev_get_dtim_period()
2060 struct wma_txrx_node *iface; in wma_vdev_get_beacon_interval() local
2067 iface = &wma->interfaces[vdev_id]; in wma_vdev_get_beacon_interval()
2069 if (!iface) in wma_vdev_get_beacon_interval()
2072 *value = iface->beaconInterval; in wma_vdev_get_beacon_interval()
2117 struct wma_txrx_node *iface; in wma_vdev_set_pause_bit() local
2122 iface = &wma->interfaces[vdev_id]; in wma_vdev_set_pause_bit()
2124 if (!iface) { in wma_vdev_set_pause_bit()
2129 iface->pause_bitmap |= (1 << bit_pos); in wma_vdev_set_pause_bit()
2143 struct wma_txrx_node *iface; in wma_vdev_clear_pause_bit() local
2148 iface = &wma->interfaces[vdev_id]; in wma_vdev_clear_pause_bit()
2150 if (!iface) { in wma_vdev_clear_pause_bit()
2155 iface->pause_bitmap &= ~(1 << bit_pos); in wma_vdev_clear_pause_bit()