| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-devices-platform-dock | 7 laptop is docked in a docking station. 22 (RO) Displays the docking station the laptop is docked to. 29 (RO) Show dock station flags, useful for checking if undock 38 (RO) Display the dock station type- dock_station, ata_bay or
|
| H A D | sysfs-devices-physical_location | 35 station or a port replicator. "No" otherwise.
|
| /linux/drivers/net/wireless/purelifi/plfxlc/ |
| H A D | usb.c | 47 if (!(tx->station[usb->sidx].flag & STATION_CONNECTED_FLAG)) in plfxlc_send_packet_from_data_queue() 49 if (!(tx->station[usb->sidx].flag & STATION_FIFO_FULL_FLAG)) in plfxlc_send_packet_from_data_queue() 50 skb = skb_peek(&tx->station[usb->sidx].data_list); in plfxlc_send_packet_from_data_queue() 54 skb = skb_dequeue(&tx->station[usb->sidx].data_list); in plfxlc_send_packet_from_data_queue() 57 if (skb_queue_len(&tx->station[usb->sidx].data_list) <= 60) in plfxlc_send_packet_from_data_queue() 137 tx->station[sidx].flag |= STATION_FIFO_FULL_FLAG; in rx_urb_complete() 143 tx->station[sidx].flag &= STATION_ACTIVE_FLAG; in rx_urb_complete() 566 if (!(tx->station[sidx].flag & STATION_CONNECTED_FLAG)) in sta_queue_cleanup_timer_callb() 568 if (tx->station[sidx].flag & STATION_HEARTBEAT_FLAG) { in sta_queue_cleanup_timer_callb() 569 tx->station[sidx].flag ^= STATION_HEARTBEAT_FLAG; in sta_queue_cleanup_timer_callb() [all …]
|
| H A D | mac.c | 302 if (!(tx->station[sidx].flag & STATION_CONNECTED_FLAG)) in plfxlc_op_tx() 304 if (memcmp(tx->station[sidx].mac, dst_mac, ETH_ALEN)) in plfxlc_op_tx() 315 if (skb_queue_len(&tx->station[sidx].data_list) > 60) in plfxlc_op_tx() 319 if (skb_queue_len(&tx->station[sidx].data_list) > 256) in plfxlc_op_tx() 321 skb_queue_tail(&tx->station[sidx].data_list, skb); in plfxlc_op_tx() 448 if (memcmp(&buffer[10], tx->station[sidx].mac, ETH_ALEN)) in plfxlc_mac_rx() 450 if (tx->station[sidx].flag & STATION_CONNECTED_FLAG) { in plfxlc_mac_rx() 451 tx->station[sidx].flag |= STATION_HEARTBEAT_FLAG; in plfxlc_mac_rx() 458 if (tx->station[sidx].flag & STATION_CONNECTED_FLAG) in plfxlc_mac_rx() 460 memcpy(tx->station[sidx].mac, &buffer[10], ETH_ALEN); in plfxlc_mac_rx() [all …]
|
| H A D | usb.h | 120 struct plf_station station[MAX_STA_NUM]; member
|
| /linux/Documentation/networking/mac80211_hwsim/ |
| H A D | mac80211_hwsim.rst | 39 point and a station) or large scale tests (multiple access points with 58 one to act as an access point and the other as a station that 74 # Run wpa_supplicant (station) for wlan1
|
| /linux/drivers/net/wireless/intel/iwlegacy/ |
| H A D | debug.c | 393 struct il_station_entry *station; in il_dbgfs_stations_read() local 410 station = &il->stations[i]; in il_dbgfs_stations_read() 411 if (!station->used) in il_dbgfs_stations_read() 416 station->sta.sta.addr, in il_dbgfs_stations_read() 417 station->sta.station_flags_msk); in il_dbgfs_stations_read() 429 j, station->tid[j].seq_number, in il_dbgfs_stations_read() 430 station->tid[j].agg.txq_id, in il_dbgfs_stations_read() 431 station->tid[j].agg.frame_count, in il_dbgfs_stations_read() 432 station->tid[j].tfds_in_queue, in il_dbgfs_stations_read() 433 station->tid[j].agg.start_idx, in il_dbgfs_stations_read() [all …]
|
| H A D | 3945.c | 733 struct il_station_entry *station; in il3945_sync_sta() local 739 station = &il->stations[sta_id]; in il3945_sync_sta() 741 station->sta.sta.modify_mask = STA_MODIFY_TX_RATE_MSK; in il3945_sync_sta() 742 station->sta.rate_n_flags = cpu_to_le16(tx_rate); in il3945_sync_sta() 743 station->sta.mode = STA_CONTROL_MODIFY_MSK; in il3945_sync_sta() 744 il_send_add_sta(il, &station->sta, CMD_ASYNC); in il3945_sync_sta()
|
| H A D | common.c | 1924 struct il_station_entry *station; in il_prep_station() local 1971 station = &il->stations[sta_id]; in il_prep_station() 1972 station->used = IL_STA_DRIVER_ACTIVE; in il_prep_station() 1977 memset(&station->sta, 0, sizeof(struct il_addsta_cmd)); in il_prep_station() 1978 memcpy(station->sta.sta.addr, addr, ETH_ALEN); in il_prep_station() 1979 station->sta.mode = 0; in il_prep_station() 1980 station->sta.sta.sta_id = sta_id; in il_prep_station() 1981 station->sta.station_flags = 0; in il_prep_station() 1993 station->sta.rate_n_flags = cpu_to_le16(rate | RATE_MCS_ANT_AB_MSK); in il_prep_station()
|
| /linux/drivers/net/wireless/intel/iwlwifi/dvm/ |
| H A D | sta.c | 240 struct iwl_station_entry *station; in iwl_prep_station() local 287 station = &priv->stations[sta_id]; in iwl_prep_station() 288 station->used = IWL_STA_DRIVER_ACTIVE; in iwl_prep_station() 294 memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd)); in iwl_prep_station() 295 memcpy(station->sta.sta.addr, addr, ETH_ALEN); in iwl_prep_station() 296 station->sta.mode = 0; in iwl_prep_station() 297 station->sta.sta.sta_id = sta_id; in iwl_prep_station() 298 station->sta.station_flags = ctx->station_flags; in iwl_prep_station() 299 station->ctxid = ctx->ctxid; in iwl_prep_station()
|
| /linux/drivers/pnp/pnpbios/ |
| H A D | Kconfig | 14 Some features (e.g. event notification, docking station information,
|
| /linux/Documentation/networking/device_drivers/fddi/ |
| H A D | defza.rst | 12 model 200 workstation. The board is a single attachment station and
|
| /linux/Documentation/sound/designs/ |
| H A D | control-names.rst | 47 Dock on docking station
|
| /linux/Documentation/driver-api/80211/ |
| H A D | mac80211.rst | 9 This part of the book only covers station and monitor mode
|
| /linux/net/atm/ |
| H A D | Kconfig | 46 network. Besides operating as a normal ATM end station client, Linux
|
| /linux/net/mac80211/ |
| H A D | Kconfig | 155 bool "Verbose station debugging" 159 debugging messages for station addition/removal.
|
| /linux/drivers/net/ethernet/smsc/ |
| H A D | Kconfig | 29 option if you have a DELL laptop with the docking station, or
|
| /linux/Documentation/networking/device_drivers/wifi/intel/ |
| H A D | ipw2100.rst | 243 When the radio is asleep, the access point sending data to the station 244 must buffer packets at the AP until the station wakes up and requests
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | dev-rds.rst | 11 format, for example the station name or travel information, on an
|
| /linux/drivers/net/wireless/marvell/mwifiex/ |
| H A D | README | 252 This command is used to get the statistics available in the station.
|
| /linux/Documentation/networking/ |
| H A D | gtp.rst | 18 tunneling User-IP payload between a mobile station (phone, modem)
|
| H A D | representors.rst | 257 Currently there is no way to use the representor to set the station permanent
|
| /linux/drivers/input/serio/ |
| H A D | Kconfig | 153 Say Y here if you have a Mobility Docking station with PS/2
|
| /linux/arch/arm/boot/dts/nvidia/ |
| H A D | tegra20-acer-a500-picasso.dts | 25 serial0 = &uartd; /* Docking station */ 430 /* Docking station */
|
| /linux/drivers/net/wireless/ath/ath10k/ |
| H A D | wmi-tlv.c | 559 struct ieee80211_sta *station; in ath10k_wmi_event_tdls_peer() local 581 station = ieee80211_find_sta_by_ifaddr(ar->hw, in ath10k_wmi_event_tdls_peer() 584 if (!station) { in ath10k_wmi_event_tdls_peer() 597 arvif->vif, station->addr, in ath10k_wmi_event_tdls_peer()
|