/drivers/isdn/hisax/ |
D | q931.c | 718 general(char *dest, u_char *p) in general() function 976 0x00, "Segmented message", general 985 0x10, "Call identity", general 988 0x14, "Call state", general 997 0x1e, "Progress indicator", general 1000 0x20, "Network-specific facilities", general 1003 0x27, "Notification indicator", general 1009 0x29, "Date/Time", general 1012 0x2c, "Keypad facility", general 1015 0x34, "Signal", general [all …]
|
/drivers/net/wireless/iwlegacy/ |
D | 4965-debug.c | 72 struct stats_rx_non_phy *general, *accum_general; in il4965_ucode_rx_stats_read() local 92 general = &il->_4965.stats.rx.general; in il4965_ucode_rx_stats_read() 96 accum_general = &il->_4965.accum_stats.rx.general; in il4965_ucode_rx_stats_read() 100 delta_general = &il->_4965.delta_stats.rx.general; in il4965_ucode_rx_stats_read() 104 max_general = &il->_4965.max_delta.rx.general; in il4965_ucode_rx_stats_read() 297 le32_to_cpu(general->bogus_cts), accum_general->bogus_cts, in il4965_ucode_rx_stats_read() 301 le32_to_cpu(general->bogus_ack), accum_general->bogus_ack, in il4965_ucode_rx_stats_read() 305 le32_to_cpu(general->non_bssid_frames), in il4965_ucode_rx_stats_read() 311 le32_to_cpu(general->filtered_frames), in il4965_ucode_rx_stats_read() 317 le32_to_cpu(general->non_channel_beacons), in il4965_ucode_rx_stats_read() [all …]
|
D | 3945-debug.c | 64 struct iwl39_stats_rx_non_phy *general, *accum_general; in il3945_ucode_rx_stats_read() local 83 general = &il->_3945.stats.rx.general; in il3945_ucode_rx_stats_read() 86 accum_general = &il->_3945.accum_stats.rx.general; in il3945_ucode_rx_stats_read() 89 delta_general = &il->_3945.delta_stats.rx.general; in il3945_ucode_rx_stats_read() 92 max_general = &il->_3945.max_delta.rx.general; in il3945_ucode_rx_stats_read() 281 le32_to_cpu(general->bogus_cts), accum_general->bogus_cts, in il3945_ucode_rx_stats_read() 286 le32_to_cpu(general->bogus_ack), accum_general->bogus_ack, in il3945_ucode_rx_stats_read() 291 le32_to_cpu(general->non_bssid_frames), in il3945_ucode_rx_stats_read() 298 le32_to_cpu(general->filtered_frames), in il3945_ucode_rx_stats_read() 306 le32_to_cpu(general->non_channel_beacons), in il3945_ucode_rx_stats_read() [all …]
|
/drivers/net/wireless/iwlwifi/mvm/ |
D | rx.c | 455 struct mvm_statistics_general_v8 *general; member 474 if (data->general) { in iwl_mvm_stat_iterator() 476 le32_to_cpu(data->general->beacon_counter[mvmvif->id]); in iwl_mvm_stat_iterator() 478 -data->general->beacon_average_energy[mvmvif->id]; in iwl_mvm_stat_iterator() 581 temperature = le32_to_cpu(stats->general.radio_temperature); in iwl_mvm_handle_rx_statistics() 582 data.mac_id = stats->rx.general.mac_id; in iwl_mvm_handle_rx_statistics() 584 stats->general.beacon_filter_average_energy; in iwl_mvm_handle_rx_statistics() 588 mvm->radio_stats.rx_time = le64_to_cpu(stats->general.rx_time); in iwl_mvm_handle_rx_statistics() 589 mvm->radio_stats.tx_time = le64_to_cpu(stats->general.tx_time); in iwl_mvm_handle_rx_statistics() 591 le64_to_cpu(stats->general.on_time_rf); in iwl_mvm_handle_rx_statistics() [all …]
|
D | debugfs.c | 667 struct mvm_statistics_rx_non_phy *general; in iwl_dbgfs_fw_rx_stats_read() local 678 general = &mvm->rx_stats.general; in iwl_dbgfs_fw_rx_stats_read() 729 PRINT_STATS_LE32(general, bogus_cts); in iwl_dbgfs_fw_rx_stats_read() 730 PRINT_STATS_LE32(general, bogus_ack); in iwl_dbgfs_fw_rx_stats_read() 731 PRINT_STATS_LE32(general, non_bssid_frames); in iwl_dbgfs_fw_rx_stats_read() 732 PRINT_STATS_LE32(general, filtered_frames); in iwl_dbgfs_fw_rx_stats_read() 733 PRINT_STATS_LE32(general, non_channel_beacons); in iwl_dbgfs_fw_rx_stats_read() 734 PRINT_STATS_LE32(general, channel_beacons); in iwl_dbgfs_fw_rx_stats_read() 735 PRINT_STATS_LE32(general, num_missed_bcon); in iwl_dbgfs_fw_rx_stats_read() 736 PRINT_STATS_LE32(general, adc_rx_saturation_time); in iwl_dbgfs_fw_rx_stats_read() [all …]
|
D | fw-api-stats.h | 205 struct mvm_statistics_tx_non_phy general; member 258 struct mvm_statistics_rx_non_phy general; member 274 struct mvm_statistics_general_v8 general; member
|
/drivers/gpu/drm/i915/ |
D | intel_bios.c | 354 const struct bdb_general_features *general; in parse_general_features() local 356 general = find_section(bdb, BDB_GENERAL_FEATURES); in parse_general_features() 357 if (general) { in parse_general_features() 358 dev_priv->vbt.int_tv_support = general->int_tv_support; in parse_general_features() 359 dev_priv->vbt.int_crt_support = general->int_crt_support; in parse_general_features() 360 dev_priv->vbt.lvds_use_ssc = general->enable_ssc; in parse_general_features() 362 intel_bios_ssc_frequency(dev, general->ssc_freq); in parse_general_features() 363 dev_priv->vbt.display_clock_mode = general->display_clock_mode; in parse_general_features() 364 dev_priv->vbt.fdi_rx_polarity_inverted = general->fdi_rx_polarity_inverted; in parse_general_features() 379 const struct bdb_general_definitions *general; in parse_general_definitions() local [all …]
|
/drivers/gpu/drm/gma500/ |
D | intel_bios.c | 316 struct bdb_general_features *general; in parse_general_features() local 322 general = find_section(bdb, BDB_GENERAL_FEATURES); in parse_general_features() 323 if (general) { in parse_general_features() 324 dev_priv->int_tv_support = general->int_tv_support; in parse_general_features() 325 dev_priv->int_crt_support = general->int_crt_support; in parse_general_features() 326 dev_priv->lvds_use_ssc = general->enable_ssc; in parse_general_features() 330 = general->ssc_freq ? 100 : 96; in parse_general_features()
|
/drivers/net/wireless/iwlwifi/dvm/ |
D | debugfs.c | 724 struct statistics_rx_non_phy *general, *accum_general; in iwl_dbgfs_ucode_rx_stats_read() local 743 general = &priv->statistics.rx_non_phy; in iwl_dbgfs_ucode_rx_stats_read() 965 le32_to_cpu(general->bogus_cts), in iwl_dbgfs_ucode_rx_stats_read() 970 le32_to_cpu(general->bogus_ack), in iwl_dbgfs_ucode_rx_stats_read() 975 le32_to_cpu(general->non_bssid_frames), in iwl_dbgfs_ucode_rx_stats_read() 981 le32_to_cpu(general->filtered_frames), in iwl_dbgfs_ucode_rx_stats_read() 987 le32_to_cpu(general->non_channel_beacons), in iwl_dbgfs_ucode_rx_stats_read() 993 le32_to_cpu(general->channel_beacons), in iwl_dbgfs_ucode_rx_stats_read() 999 le32_to_cpu(general->num_missed_bcon), in iwl_dbgfs_ucode_rx_stats_read() 1005 le32_to_cpu(general->adc_rx_saturation_time), in iwl_dbgfs_ucode_rx_stats_read() [all …]
|
D | rx.c | 464 common = &stats->general.common; in iwlagn_rx_statistics() 465 rx_non_phy = &stats->rx.general.common; in iwlagn_rx_statistics() 470 bt_activity = &stats->general.activity; in iwlagn_rx_statistics() 474 priv->statistics.num_bt_kills = stats->rx.general.num_bt_kills; in iwlagn_rx_statistics() 476 le32_to_cpu(stats->rx.general.num_bt_kills)); in iwlagn_rx_statistics() 482 common = &stats->general.common; in iwlagn_rx_statistics() 483 rx_non_phy = &stats->rx.general; in iwlagn_rx_statistics()
|
/drivers/net/ethernet/intel/ |
D | Kconfig | 54 For general information and support, go to the Intel support 78 For general information and support, go to the Intel support 99 For general information and support, go to the Intel support 140 For general information and support, go to the Intel support 162 For general information and support, go to the Intel support 185 For general information and support, go to the Intel support 241 For general information and support, go to the Intel support 264 For general information and support, go to the Intel support 314 For general information and support, go to the Intel support 335 For general information and support, go to the Intel support
|
/drivers/net/ethernet/oki-semi/pch_gbe/ |
D | Kconfig | 14 general embedded platform. EG20T PCH has Gigabit Ethernet interface. 20 ML7223 IOH is for MP(Media Phone) use. ML7831 IOH is for general
|
/drivers/net/ethernet/chelsio/ |
D | Kconfig | 29 For general information about Chelsio and our products, visit 56 For general information about Chelsio and our products, visit 76 For general information about Chelsio and our products, visit 117 For general information about Chelsio and our products, visit
|
/drivers/staging/iio/ |
D | TODO | 19 - general purpose ADC channels 50 1) Discussion of approach. Is it general enough? 62 1) Move to a more general hardware periodic timer request
|
/drivers/staging/rts5208/ |
D | Makefile | 6 rtsx_card.o general.o sd.o xd.o ms.o spi.o trace.o
|
/drivers/net/ethernet/brocade/bna/ |
D | Kconfig | 14 For general information and support, go to the QLogic support
|
/drivers/scsi/csiostor/ |
D | Kconfig | 10 For general information about Chelsio and our products, visit
|
/drivers/infiniband/hw/cxgb4/ |
D | Kconfig | 9 For general information about Chelsio and our products, visit
|
/drivers/scsi/ |
D | gdth_ioctl.h | 193 } general; member 229 } general; member
|
/drivers/infiniband/hw/cxgb3/ |
D | Kconfig | 9 For general information about Chelsio and our products, visit
|
/drivers/staging/media/mn88472/ |
D | TODO | 1 Driver general quality is not good enough for mainline. Also, other
|
/drivers/staging/media/mn88473/ |
D | TODO | 1 Driver general quality is not good enough for mainline. Also, other
|
/drivers/dma/sh/ |
D | Kconfig | 47 This driver supports the general purpose DMA controller found in the
|
/drivers/regulator/ |
D | Kconfig | 261 21 general purpose LDOs, 3 dedicated LDOs, and 5 BUCKs. All 673 three step-down converters and two general-purpose LDO voltage regulators. 681 three step-down converters and two general-purpose LDO voltage regulators. 696 provides three step-down converters and four general-purpose LDO 705 provides six step-down converters and one general-purpose LDO 714 provides three step-down converters and two general-purpose LDO 743 converters, 11 general purpose LDOs, VBUS generator and digital
|
/drivers/net/ethernet/packetengines/ |
D | Kconfig | 38 information about this driver in particular and Beowulf in general.
|