/linux-4.4.14/arch/x86/entry/syscalls/ |
D | syscall_64.tbl | 7 # The abi is "common", "64" or "x32" for this file. 9 0 common read sys_read 10 1 common write sys_write 11 2 common open sys_open 12 3 common close sys_close 13 4 common stat sys_newstat 14 5 common fstat sys_newfstat 15 6 common lstat sys_newlstat 16 7 common poll sys_poll 17 8 common lseek sys_lseek [all …]
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | f_mass_storage.c | 326 struct fsg_common *common; member 340 static inline int __fsg_is_set(struct fsg_common *common, in __fsg_is_set() argument 343 if (common->fsg) in __fsg_is_set() 345 ERROR(common, "common->fsg is NULL in %s at %u\n", func, line); in __fsg_is_set() 350 #define fsg_is_set(common) likely(__fsg_is_set(common, __func__, __LINE__)) argument 359 static int exception_in_progress(struct fsg_common *common) in exception_in_progress() argument 361 return common->state > FSG_STATE_IDLE; in exception_in_progress() 365 static void set_bulk_out_req_length(struct fsg_common *common, in set_bulk_out_req_length() argument 371 rem = length % common->bulk_out_maxpacket; in set_bulk_out_req_length() 373 length += common->bulk_out_maxpacket - rem; in set_bulk_out_req_length() [all …]
|
D | f_mass_storage.h | 71 int (*thread_exits)(struct fsg_common *common); 81 struct fsg_common *common; member 127 void fsg_common_get(struct fsg_common *common); 129 void fsg_common_put(struct fsg_common *common); 131 void fsg_common_set_sysfs(struct fsg_common *common, bool sysfs); 133 int fsg_common_set_num_buffers(struct fsg_common *common, unsigned int n); 135 void fsg_common_free_buffers(struct fsg_common *common); 137 int fsg_common_set_cdev(struct fsg_common *common, 142 void fsg_common_remove_luns(struct fsg_common *common); 144 void fsg_common_set_ops(struct fsg_common *common, [all …]
|
/linux-4.4.14/drivers/net/wireless/rsi/ |
D | rsi_91x_core.c | 27 static u8 rsi_determine_min_weight_queue(struct rsi_common *common) in rsi_determine_min_weight_queue() argument 29 struct wmm_qinfo *tx_qinfo = common->tx_qinfo; in rsi_determine_min_weight_queue() 34 q_len = skb_queue_len(&common->tx_queue[ii]); in rsi_determine_min_weight_queue() 36 common->min_weight = tx_qinfo[ii].weight; in rsi_determine_min_weight_queue() 50 static bool rsi_recalculate_weights(struct rsi_common *common) in rsi_recalculate_weights() argument 52 struct wmm_qinfo *tx_qinfo = common->tx_qinfo; in rsi_recalculate_weights() 58 q_len = skb_queue_len(&common->tx_queue[ii]); in rsi_recalculate_weights() 63 ((tx_qinfo[ii].weight > common->min_weight) ? in rsi_recalculate_weights() 64 tx_qinfo[ii].weight - common->min_weight : 0); in rsi_recalculate_weights() 89 static u32 rsi_get_num_pkts_dequeue(struct rsi_common *common, u8 q_num) in rsi_get_num_pkts_dequeue() argument [all …]
|
D | rsi_91x_mgmt.c | 211 static void rsi_set_default_parameters(struct rsi_common *common) in rsi_set_default_parameters() argument 213 common->band = IEEE80211_BAND_2GHZ; in rsi_set_default_parameters() 214 common->channel_width = BW_20MHZ; in rsi_set_default_parameters() 215 common->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD; in rsi_set_default_parameters() 216 common->channel = 1; in rsi_set_default_parameters() 217 common->min_rate = 0xffff; in rsi_set_default_parameters() 218 common->fsm_state = FSM_CARD_NOT_READY; in rsi_set_default_parameters() 219 common->iface_down = true; in rsi_set_default_parameters() 220 common->endpoint = EP_2GHZ_20MHZ; in rsi_set_default_parameters() 230 static void rsi_set_contention_vals(struct rsi_common *common) in rsi_set_contention_vals() argument [all …]
|
D | rsi_91x_mac80211.c | 131 bool rsi_is_cipher_wep(struct rsi_common *common) in rsi_is_cipher_wep() argument 133 if (((common->secinfo.gtk_cipher == WLAN_CIPHER_SUITE_WEP104) || in rsi_is_cipher_wep() 134 (common->secinfo.gtk_cipher == WLAN_CIPHER_SUITE_WEP40)) && in rsi_is_cipher_wep() 135 (!common->secinfo.ptk_cipher)) in rsi_is_cipher_wep() 245 struct rsi_common *common = adapter->priv; in rsi_mac80211_tx() local 247 rsi_core_xmit(common, skb); in rsi_mac80211_tx() 261 struct rsi_common *common = adapter->priv; in rsi_mac80211_start() local 263 mutex_lock(&common->mutex); in rsi_mac80211_start() 264 common->iface_down = false; in rsi_mac80211_start() 265 mutex_unlock(&common->mutex); in rsi_mac80211_start() [all …]
|
D | rsi_91x_main.c | 68 static struct sk_buff *rsi_prepare_skb(struct rsi_common *common, in rsi_prepare_skb() argument 99 rx_params->channel = rsi_get_connected_channel(common->priv); in rsi_prepare_skb() 111 int rsi_read_pkt(struct rsi_common *common, s32 rcv_pkt_len) in rsi_read_pkt() argument 120 frame_desc = &common->rx_data_pkt[index]; in rsi_read_pkt() 130 skb = rsi_prepare_skb(common, in rsi_read_pkt() 137 rsi_indicate_pkt_to_os(common, skb); in rsi_read_pkt() 141 rsi_mgmt_pkt_recv(common, (frame_desc + offset)); in rsi_read_pkt() 167 static void rsi_tx_scheduler_thread(struct rsi_common *common) in rsi_tx_scheduler_thread() argument 169 struct rsi_hw *adapter = common->priv; in rsi_tx_scheduler_thread() 175 rsi_wait_event(&common->tx_thread.event, timeout); in rsi_tx_scheduler_thread() [all …]
|
D | rsi_91x_debugfs.c | 29 struct rsi_common *common = seq->private; in rsi_sdio_stats_read() local 30 struct rsi_hw *adapter = common->priv; in rsi_sdio_stats_read() 84 struct rsi_common *common = seq->private; in rsi_version_read() local 86 common->driver_ver.major = 0; in rsi_version_read() 87 common->driver_ver.minor = 1; in rsi_version_read() 88 common->driver_ver.release_num = 0; in rsi_version_read() 89 common->driver_ver.patch_num = 0; in rsi_version_read() 91 common->driver_ver.major, in rsi_version_read() 92 common->driver_ver.minor, in rsi_version_read() 93 common->driver_ver.release_num, in rsi_version_read() [all …]
|
D | rsi_91x_sdio_ops.c | 75 static int rsi_copy_to_card(struct rsi_common *common, in rsi_copy_to_card() argument 80 struct rsi_hw *adapter = common->priv; in rsi_copy_to_card() 168 static int rsi_load_ta_instructions(struct rsi_common *common) in rsi_load_ta_instructions() argument 170 struct rsi_hw *adapter = common->priv; in rsi_load_ta_instructions() 220 status = rsi_copy_to_card(common, fw, len, num_blocks); in rsi_load_ta_instructions() 235 static int rsi_process_pkt(struct rsi_common *common) in rsi_process_pkt() argument 237 struct rsi_hw *adapter = common->priv; in rsi_process_pkt() 254 common->rx_data_pkt = kmalloc(rcv_pkt_len, GFP_KERNEL); in rsi_process_pkt() 255 if (!common->rx_data_pkt) { in rsi_process_pkt() 262 common->rx_data_pkt, in rsi_process_pkt() [all …]
|
D | rsi_91x_pkt.c | 27 int rsi_send_data_pkt(struct rsi_common *common, struct sk_buff *skb) in rsi_send_data_pkt() argument 29 struct rsi_hw *adapter = common->priv; in rsi_send_data_pkt() 68 (common->secinfo.security_enable)) { in rsi_send_data_pkt() 69 if (rsi_is_cipher_wep(common)) in rsi_send_data_pkt() 80 if (common->min_rate != 0xffff) { in rsi_send_data_pkt() 83 frame_desc[4] = cpu_to_le16(common->min_rate); in rsi_send_data_pkt() 85 if (conf_is_ht40(&common->priv->hw->conf)) in rsi_send_data_pkt() 88 if (common->vif_info[0].sgi) { in rsi_send_data_pkt() 89 if (common->min_rate & 0x100) /* Only MCS rates */ in rsi_send_data_pkt() 101 status = adapter->host_intf_write_pkt(common->priv, in rsi_send_data_pkt() [all …]
|
D | rsi_91x_usb_ops.c | 33 static int rsi_copy_to_card(struct rsi_common *common, in rsi_copy_to_card() argument 38 struct rsi_hw *adapter = common->priv; in rsi_copy_to_card() 89 void rsi_usb_rx_thread(struct rsi_common *common) in rsi_usb_rx_thread() argument 91 struct rsi_hw *adapter = common->priv; in rsi_usb_rx_thread() 101 mutex_lock(&common->tx_rxlock); in rsi_usb_rx_thread() 102 status = rsi_read_pkt(common, 0); in rsi_usb_rx_thread() 105 mutex_unlock(&common->tx_rxlock); in rsi_usb_rx_thread() 108 mutex_unlock(&common->tx_rxlock); in rsi_usb_rx_thread() 132 static int rsi_load_ta_instructions(struct rsi_common *common) in rsi_load_ta_instructions() argument 134 struct rsi_hw *adapter = common->priv; in rsi_load_ta_instructions() [all …]
|
D | rsi_mgmt.h | 289 int rsi_mgmt_pkt_recv(struct rsi_common *common, u8 *msg); 290 int rsi_set_vap_capabilities(struct rsi_common *common, enum opmode mode); 291 int rsi_send_aggregation_params_frame(struct rsi_common *common, u16 tid, 293 int rsi_hal_load_key(struct rsi_common *common, u8 *data, u16 key_len, 295 int rsi_set_channel(struct rsi_common *common, u16 chno); 296 int rsi_send_block_unblock_frame(struct rsi_common *common, bool event); 297 void rsi_inform_bss_status(struct rsi_common *common, u8 status, 299 void rsi_indicate_pkt_to_os(struct rsi_common *common, struct sk_buff *skb); 300 int rsi_mac80211_attach(struct rsi_common *common); 301 void rsi_indicate_tx_status(struct rsi_hw *common, struct sk_buff *skb, [all …]
|
D | rsi_common.h | 60 static inline int rsi_create_kthread(struct rsi_common *common, in rsi_create_kthread() argument 66 thread->task = kthread_run(func_ptr, common, "%s", name); in rsi_create_kthread() 86 int rsi_read_pkt(struct rsi_common *common, s32 rcv_pkt_len);
|
/linux-4.4.14/drivers/net/wireless/ath/ |
D | key.c | 25 #define REG_READ (common->ops->read) 26 #define REG_WRITE(_ah, _reg, _val) (common->ops->write)(_ah, _val, _reg) 28 if (common->ops->enable_write_buffer) \ 29 common->ops->enable_write_buffer((_ah)); 32 if (common->ops->write_flush) \ 33 common->ops->write_flush((_ah)); 42 bool ath_hw_keyreset(struct ath_common *common, u16 entry) in ath_hw_keyreset() argument 45 void *ah = common->ah; in ath_hw_keyreset() 47 if (entry >= common->keymax) { in ath_hw_keyreset() 48 ath_err(common, "keyreset: keycache entry %u out of range\n", in ath_hw_keyreset() [all …]
|
D | hw.c | 23 #define REG_READ (common->ops->read) 24 #define REG_WRITE(_ah, _reg, _val) (common->ops->write)(_ah, _val, _reg) 118 void ath_hw_setbssidmask(struct ath_common *common) in ath_hw_setbssidmask() argument 120 void *ah = common->ah; in ath_hw_setbssidmask() 123 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr)); in ath_hw_setbssidmask() 125 id1 |= get_unaligned_le16(common->macaddr + 4); in ath_hw_setbssidmask() 128 REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(common->bssidmask)); in ath_hw_setbssidmask() 129 REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(common->bssidmask + 4)); in ath_hw_setbssidmask() 142 void ath_hw_cycle_counters_update(struct ath_common *common) in ath_hw_cycle_counters_update() argument 145 void *ah = common->ah; in ath_hw_cycle_counters_update() [all …]
|
D | ath.h | 143 void (*wakeup)(struct ath_common *common); 144 void (*restore)(struct ath_common *common); 191 static inline const struct ath_ps_ops *ath_ps_ops(struct ath_common *common) in ath_ps_ops() argument 193 return common->ps_ops; in ath_ps_ops() 196 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common, 199 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr); 201 void ath_hw_setbssidmask(struct ath_common *common); 202 void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key); 203 int ath_key_config(struct ath_common *common, 207 bool ath_hw_keyreset(struct ath_common *common, u16 entry); [all …]
|
D | main.c | 29 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common, in ath_rxbuf_alloc() argument 49 skb = __dev_alloc_skb(len + common->cachelsz - 1, gfp_mask); in ath_rxbuf_alloc() 51 off = ((unsigned long) skb->data) % common->cachelsz; in ath_rxbuf_alloc() 53 skb_reserve(skb, common->cachelsz - off); in ath_rxbuf_alloc() 63 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr) in ath_is_mybeacon() argument 66 !is_zero_ether_addr(common->curbssid) && in ath_is_mybeacon() 67 ether_addr_equal_64bits(hdr->addr3, common->curbssid); in ath_is_mybeacon() 71 void ath_printk(const char *level, const struct ath_common* common, in ath_printk() argument 82 if (common && common->hw && common->hw->wiphy) { in ath_printk() 84 level, wiphy_name(common->hw->wiphy), &vaf); in ath_printk() [all …]
|
D | dfs_pattern_detector.c | 222 ath_dbg(dpd->common, DFS, in channel_detector_create() 297 ath_dbg(dpd->common, DFS, in dpd_add_pulse() 350 dfs_pattern_detector_init(struct ath_common *common, in dfs_pattern_detector_init() argument 365 dpd->common = common; in dfs_pattern_detector_init() 369 ath_dbg(common, DFS,"Could not set DFS domain to %d", region); in dfs_pattern_detector_init()
|
/linux-4.4.14/drivers/media/platform/davinci/ |
D | vpif_display.c | 74 struct common_obj *common; in vpif_buffer_prepare() local 76 common = &ch->common[VPIF_VIDEO_INDEX]; in vpif_buffer_prepare() 78 vb2_set_plane_payload(vb, 0, common->fmt.fmt.pix.sizeimage); in vpif_buffer_prepare() 82 vbuf->field = common->fmt.fmt.pix.field; in vpif_buffer_prepare() 87 if (!ISALIGNED(addr + common->ytop_off) || in vpif_buffer_prepare() 88 !ISALIGNED(addr + common->ybtm_off) || in vpif_buffer_prepare() 89 !ISALIGNED(addr + common->ctop_off) || in vpif_buffer_prepare() 90 !ISALIGNED(addr + common->cbtm_off)) { in vpif_buffer_prepare() 118 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; in vpif_buffer_queue_setup() local 120 if (fmt && fmt->fmt.pix.sizeimage < common->fmt.fmt.pix.sizeimage) in vpif_buffer_queue_setup() [all …]
|
D | vpif_capture.c | 79 struct common_obj *common; in vpif_buffer_prepare() local 84 common = &ch->common[VPIF_VIDEO_INDEX]; in vpif_buffer_prepare() 86 vb2_set_plane_payload(vb, 0, common->fmt.fmt.pix.sizeimage); in vpif_buffer_prepare() 90 vbuf->field = common->fmt.fmt.pix.field; in vpif_buffer_prepare() 93 if (!IS_ALIGNED((addr + common->ytop_off), 8) || in vpif_buffer_prepare() 94 !IS_ALIGNED((addr + common->ybtm_off), 8) || in vpif_buffer_prepare() 95 !IS_ALIGNED((addr + common->ctop_off), 8) || in vpif_buffer_prepare() 96 !IS_ALIGNED((addr + common->cbtm_off), 8)) { in vpif_buffer_prepare() 123 struct common_obj *common; in vpif_buffer_queue_setup() local 125 common = &ch->common[VPIF_VIDEO_INDEX]; in vpif_buffer_queue_setup() [all …]
|
/linux-4.4.14/tools/perf/ |
D | command-list.txt | 3 # command name category [deprecated] [common] 5 perf-annotate mainporcelain common 6 perf-archive mainporcelain common 7 perf-bench mainporcelain common 8 perf-buildid-cache mainporcelain common 9 perf-buildid-list mainporcelain common 10 perf-data mainporcelain common 11 perf-diff mainporcelain common 12 perf-evlist mainporcelain common 13 perf-inject mainporcelain common [all …]
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | Makefile | 10 common.o gpio.o dma.o wd_timer.o display.o i2c.o hdq1w.o omap_hwmod.o \ 13 hwmod-common = omap_hwmod.o omap_hwmod_reset.o \ 15 clock-common = clock.o 16 secure-common = omap-smc.o omap-secure.o 18 obj-$(CONFIG_ARCH_OMAP2) += $(omap-2-3-common) $(hwmod-common) 19 obj-$(CONFIG_ARCH_OMAP3) += $(omap-2-3-common) $(hwmod-common) $(secure-common) 20 obj-$(CONFIG_ARCH_OMAP4) += $(hwmod-common) $(secure-common) 21 obj-$(CONFIG_SOC_AM33XX) += $(hwmod-common) 22 obj-$(CONFIG_SOC_OMAP5) += $(hwmod-common) $(secure-common) 23 obj-$(CONFIG_SOC_AM43XX) += $(hwmod-common) $(secure-common) [all …]
|
D | vp.c | 21 vpconfig &= ~(vp->common->vpconfig_initvoltage_mask | in _vp_set_init_voltage() 22 vp->common->vpconfig_forceupdate | in _vp_set_init_voltage() 23 vp->common->vpconfig_initvdd); in _vp_set_init_voltage() 24 vpconfig |= vsel << __ffs(vp->common->vpconfig_initvoltage_mask); in _vp_set_init_voltage() 28 voltdm->write((vpconfig | vp->common->vpconfig_initvdd), in _vp_set_init_voltage() 76 __ffs(voltdm->vp->common->vpconfig_erroroffset_mask)) | in omap_vp_init() 77 vp->common->vpconfig_timeouten; in omap_vp_init() 81 val = (waittime << vp->common->vstepmin_smpswaittimemin_shift) | in omap_vp_init() 82 (vstepmin << vp->common->vstepmin_stepmin_shift); in omap_vp_init() 86 val = (vstepmax << vp->common->vstepmax_stepmax_shift) | in omap_vp_init() [all …]
|
D | vc.c | 144 vc_cmdval &= ~vc->common->cmd_on_mask; in omap_vc_pre_scale() 145 vc_cmdval |= (*target_vsel << vc->common->cmd_on_shift); in omap_vc_pre_scale() 182 vc_valid = vc->common->valid; in omap_vc_bypass_scale() 183 vc_bypass_val_reg = vc->common->bypass_val_reg; in omap_vc_bypass_scale() 184 vc_bypass_value = (target_vsel << vc->common->data_shift) | in omap_vc_bypass_scale() 185 (vc->volt_reg_addr << vc->common->regaddr_shift) | in omap_vc_bypass_scale() 186 (vc->i2c_slave_addr << vc->common->slaveaddr_shift); in omap_vc_bypass_scale() 713 voltdm->rmw(vc->common->i2c_cfg_clear_mask, in omap_vc_i2c_init() 714 vc->common->i2c_cfg_hsen_mask, in omap_vc_i2c_init() 715 vc->common->i2c_cfg_reg); in omap_vc_i2c_init() [all …]
|
D | vp44xx_data.c | 60 .common = &omap4_vp_common, 71 .common = &omap4_vp_common, 82 .common = &omap4_vp_common,
|
D | vc44xx_data.c | 53 .common = &omap4_vc_common, 66 .common = &omap4_vc_common, 79 .common = &omap4_vc_common,
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | psparse.c | 162 if (op->common.parent) { in acpi_ps_complete_this_op() 163 prev = op->common.parent->common.value.arg; in acpi_ps_complete_this_op() 176 acpi_ps_get_opcode_info(op->common.parent->common. in acpi_ps_complete_this_op() 191 op->common.aml); in acpi_ps_complete_this_op() 202 if ((op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 204 || (op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 206 || (op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 208 || (op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 210 || (op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() 212 || (op->common.parent->common.aml_opcode == in acpi_ps_complete_this_op() [all …]
|
D | dsobject.c | 89 if (op->common.aml_opcode == AML_INT_NAMEPATH_OP) { in acpi_ds_build_internal_object() 95 if (!op->common.node) { in acpi_ds_build_internal_object() 97 op->common.value.string, in acpi_ds_build_internal_object() 105 common. in acpi_ds_build_internal_object() 114 ((op->common.parent->common.aml_opcode == in acpi_ds_build_internal_object() 116 || (op->common.parent->common.aml_opcode == in acpi_ds_build_internal_object() 135 ACPI_ERROR_NAMESPACE(op->common.value. in acpi_ds_build_internal_object() 145 if ((op->common.parent->common.aml_opcode == AML_PACKAGE_OP) || in acpi_ds_build_internal_object() 146 (op->common.parent->common.aml_opcode == in acpi_ds_build_internal_object() 164 op->common.node); in acpi_ds_build_internal_object() [all …]
|
D | dsutils.c | 204 if ((!op->common.parent) || in acpi_ds_is_result_used() 205 (op->common.parent->common.aml_opcode == AML_SCOPE_OP)) { in acpi_ds_is_result_used() 211 acpi_ps_get_opcode_name(op->common. in acpi_ds_is_result_used() 219 acpi_ps_get_opcode_info(op->common.parent->common.aml_opcode); in acpi_ds_is_result_used() 234 switch (op->common.parent->common.aml_opcode) { in acpi_ds_is_result_used() 247 if ((walk_state->control_state->common.state == in acpi_ds_is_result_used() 275 if ((op->common.parent->common.aml_opcode == AML_REGION_OP) || in acpi_ds_is_result_used() 276 (op->common.parent->common.aml_opcode == AML_DATA_REGION_OP) in acpi_ds_is_result_used() 277 || (op->common.parent->common.aml_opcode == AML_PACKAGE_OP) in acpi_ds_is_result_used() 278 || (op->common.parent->common.aml_opcode == in acpi_ds_is_result_used() [all …]
|
D | pstree.c | 85 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode); in acpi_ps_get_arg() 104 arg = op->common.value.arg; in acpi_ps_get_arg() 107 arg = arg->common.next; in acpi_ps_get_arg() 140 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode); in acpi_ps_append_arg() 146 op->common.aml_opcode)); in acpi_ps_append_arg() 161 if (op->common.value.arg) { in acpi_ps_append_arg() 165 prev_arg = op->common.value.arg; in acpi_ps_append_arg() 166 while (prev_arg->common.next) { in acpi_ps_append_arg() 167 prev_arg = prev_arg->common.next; in acpi_ps_append_arg() 169 prev_arg->common.next = arg; in acpi_ps_append_arg() [all …]
|
D | dsfield.c | 164 if (op->common.aml_opcode == AML_CREATE_FIELD_OP) { in acpi_ds_create_buffer_field() 207 arg->common.value.string, ACPI_TYPE_ANY, in acpi_ds_create_buffer_field() 211 ACPI_ERROR_NAMESPACE(arg->common.value.string, status); in acpi_ds_create_buffer_field() 221 op->common.node = node; in acpi_ds_create_buffer_field() 250 second_desc = obj_desc->common.next_object; in acpi_ds_create_buffer_field() 310 switch (arg->common.aml_opcode) { in acpi_ds_get_field_names() 314 + (u64) arg->common.value.size; in acpi_ds_get_field_names() 343 ((u8)((u32)(arg->common.value.integer & 0x07)))); in acpi_ds_get_field_names() 348 (u8)((arg->common.value.integer >> 8) & 0xFF); in acpi_ds_get_field_names() 353 (u8)((arg->common.value.integer >> 16) & 0xFF); in acpi_ds_get_field_names() [all …]
|
D | nsobject.c | 175 while (last_obj_desc->common.next_object) { in acpi_ns_attach_object() 176 last_obj_desc = last_obj_desc->common.next_object; in acpi_ns_attach_object() 181 last_obj_desc->common.next_object = node->object; in acpi_ns_attach_object() 212 if (!obj_desc || (obj_desc->common.type == ACPI_TYPE_LOCAL_DATA)) { in acpi_ns_detach_object() 220 if (obj_desc->common.type == ACPI_TYPE_METHOD) { in acpi_ns_detach_object() 232 node->object = obj_desc->common.next_object; in acpi_ns_detach_object() 237 (node->object->common.type != ACPI_TYPE_LOCAL_DATA)) { in acpi_ns_detach_object() 238 node->object = node->object->common.next_object; in acpi_ns_detach_object() 245 if (obj_desc->common.next_object && in acpi_ns_detach_object() 246 ((obj_desc->common.next_object)->common.type == in acpi_ns_detach_object() [all …]
|
D | dbxface.c | 180 aml_offset = (u32)ACPI_PTR_DIFF(op->common.aml, in acpi_db_single_step() 212 if (op->common.aml_opcode == AML_INT_NAMEDFIELD_OP) { in acpi_db_single_step() 246 next = op->common.next; in acpi_db_single_step() 247 op->common.next = NULL; in acpi_db_single_step() 250 parent_op = op->common.parent; in acpi_db_single_step() 253 (walk_state->control_state->common.state == in acpi_db_single_step() 261 if ((parent_op->common.aml_opcode == in acpi_db_single_step() 263 || (parent_op->common.aml_opcode == in acpi_db_single_step() 268 parent_op = parent_op->common.parent; in acpi_db_single_step() 272 if ((parent_op->common.aml_opcode == in acpi_db_single_step() [all …]
|
D | dswexec.c | 98 walk_state->control_state->common.state = 0; in acpi_ds_get_predicate_value() 141 if (local_obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_ds_get_predicate_value() 144 obj_desc, walk_state, obj_desc->common.type)); in acpi_ds_get_predicate_value() 159 walk_state->control_state->common.value = TRUE; in acpi_ds_get_predicate_value() 165 walk_state->control_state->common.value = FALSE; in acpi_ds_get_predicate_value() 176 walk_state->control_state->common.value, in acpi_ds_get_predicate_value() 193 walk_state->control_state->common.state = ACPI_CONTROL_NORMAL; in acpi_ds_get_predicate_value() 231 walk_state->opcode = op->common.aml_opcode; in acpi_ds_exec_begin_op() 233 acpi_ps_get_opcode_info(op->common.aml_opcode); in acpi_ds_exec_begin_op() 264 (walk_state->control_state->common.state == in acpi_ds_exec_begin_op() [all …]
|
D | dsopcode.c | 126 if (buffer_desc->common.type != ACPI_TYPE_BUFFER) { in acpi_ds_init_buffer_field() 256 buffer_desc->common.reference_count = (u16) in acpi_ds_init_buffer_field() 257 (buffer_desc->common.reference_count + in acpi_ds_init_buffer_field() 258 obj_desc->common.reference_count); in acpi_ds_init_buffer_field() 313 node = op->common.node; in acpi_ds_eval_buffer_field_operands() 317 next_op = op->common.value.arg; in acpi_ds_eval_buffer_field_operands() 333 status = acpi_ex_resolve_operands(op->common.aml_opcode, in acpi_ds_eval_buffer_field_operands() 337 acpi_ps_get_opcode_name(op->common.aml_opcode), in acpi_ds_eval_buffer_field_operands() 345 if (op->common.aml_opcode == AML_CREATE_FIELD_OP) { in acpi_ds_eval_buffer_field_operands() 350 acpi_ds_init_buffer_field(op->common.aml_opcode, obj_desc, in acpi_ds_eval_buffer_field_operands() [all …]
|
D | dswload2.c | 87 (walk_state->control_state->common.state == in acpi_ds_load2_begin_op() 110 buffer_ptr = op->common.value.string; in acpi_ds_load2_begin_op() 230 walk_state->scope_info->common.value = ACPI_TYPE_ANY; in acpi_ds_load2_begin_op() 265 if (op && op->common.node) { in acpi_ds_load2_begin_op() 269 node = op->common.node; in acpi_ds_load2_begin_op() 355 op->common.node = node; in acpi_ds_load2_begin_op() 397 if (op->common.aml_opcode == AML_SCOPE_OP) { in acpi_ds_load2_end_op() 409 node = op->common.node; in acpi_ds_load2_end_op() 421 (op->common.aml_opcode != AML_INT_METHODCALL_OP)) { in acpi_ds_load2_end_op() 462 acpi_ps_get_opcode_name(op->common.aml_opcode), in acpi_ds_load2_end_op() [all …]
|
D | psutils.c | 93 op->common.descriptor_type = ACPI_DESC_TYPE_PARSER; in acpi_ps_init_op() 94 op->common.aml_opcode = opcode; in acpi_ps_init_op() 96 ACPI_DISASM_ONLY_MEMBERS(strncpy(op->common.aml_op_name, in acpi_ps_init_op() 98 name, sizeof(op->common.aml_op_name))); in acpi_ps_init_op() 153 op->common.aml = aml; in acpi_ps_alloc_op() 154 op->common.flags = flags; in acpi_ps_alloc_op() 177 if (op->common.aml_opcode == AML_INT_RETURN_VALUE_OP) { in acpi_ps_free_op() 182 if (op->common.flags & ACPI_PARSEOP_GENERIC) { in acpi_ps_free_op() 213 if (op->common.flags & ACPI_PARSEOP_GENERIC) { in acpi_ps_get_name() 230 if (op->common.flags & ACPI_PARSEOP_GENERIC) { in acpi_ps_set_name()
|
D | dscontrol.c | 77 op, op->common.aml_opcode, walk_state)); in acpi_ds_exec_begin_control_op() 79 switch (op->common.aml_opcode) { in acpi_ds_exec_begin_control_op() 92 walk_state->control_state->common.state = in acpi_ds_exec_begin_control_op() 119 control_state->control.opcode = op->common.aml_opcode; in acpi_ds_exec_begin_control_op() 173 switch (op->common.aml_opcode) { in acpi_ds_exec_end_control_op() 183 (u8)walk_state->control_state->common.value; in acpi_ds_exec_end_control_op() 203 if (control_state->common.value) { in acpi_ds_exec_end_control_op() 246 op->common.value.arg)); in acpi_ds_exec_end_control_op() 253 if (op->common.value.arg) { in acpi_ds_exec_end_control_op() 263 op->common.value.arg); in acpi_ds_exec_end_control_op() [all …]
|
D | psargs.c | 249 arg->common.value.name = path; in acpi_ps_get_next_namepath() 298 name_op->common.value.name = path; in acpi_ps_get_next_namepath() 302 name_op->common.node = node; in acpi_ps_get_next_namepath() 337 else if (walk_state->op->common.aml_opcode == in acpi_ps_get_next_namepath() 347 else if ((arg->common.parent) && in acpi_ps_get_next_namepath() 348 ((arg->common.parent->common.aml_opcode == in acpi_ps_get_next_namepath() 350 || (arg->common.parent->common.aml_opcode == in acpi_ps_get_next_namepath() 372 arg->common.value.name = path; in acpi_ps_get_next_namepath() 406 arg->common.value.integer = (u64) *aml; in acpi_ps_get_next_simple_arg() 415 ACPI_MOVE_16_TO_64(&arg->common.value.integer, aml); in acpi_ps_get_next_simple_arg() [all …]
|
D | psloop.c | 95 switch (op->common.aml_opcode) { in acpi_ps_get_arguments() 160 switch (op->common.aml_opcode) { in acpi_ps_get_arguments() 172 acpi_ps_link_module_code(op->common. in acpi_ps_get_arguments() 203 && (op->common.parent->common.aml_opcode == in acpi_ps_get_arguments() 206 acpi_ps_get_opcode_info(op->common. in acpi_ps_get_arguments() 213 op->common. in acpi_ps_get_arguments() 231 switch (op->common.aml_opcode) { in acpi_ps_get_arguments() 255 if ((op->common.parent) && in acpi_ps_get_arguments() 256 (op->common.parent->common.aml_opcode == in acpi_ps_get_arguments() 352 if (parent_op->common.node) { in acpi_ps_link_module_code() [all …]
|
D | exstoren.c | 96 if (source_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) { in acpi_ex_resolve_object() 116 if ((source_desc->common.type != ACPI_TYPE_INTEGER) && in acpi_ex_resolve_object() 117 (source_desc->common.type != ACPI_TYPE_BUFFER) && in acpi_ex_resolve_object() 118 (source_desc->common.type != ACPI_TYPE_STRING) && in acpi_ex_resolve_object() 119 !((source_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) && in acpi_ex_resolve_object() 214 if (source_desc->common.type != dest_desc->common.type) { in acpi_ex_store_object_to_object() 224 status = acpi_ex_convert_to_target_type(dest_desc->common.type, in acpi_ex_store_object_to_object() 246 switch (dest_desc->common.type) { in acpi_ex_store_object_to_object()
|
D | exfield.c | 151 if (obj_desc->common.type == ACPI_TYPE_BUFFER_FIELD) { in acpi_ex_read_data_from_field() 156 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) { in acpi_ex_read_data_from_field() 162 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) && in acpi_ex_read_data_from_field() 256 if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) && in acpi_ex_read_data_from_field() 289 obj_desc, obj_desc->common.type, buffer, in acpi_ex_read_data_from_field() 350 if (obj_desc->common.type == ACPI_TYPE_BUFFER_FIELD) { in acpi_ex_write_data_to_field() 355 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) { in acpi_ex_write_data_to_field() 361 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) && in acpi_ex_write_data_to_field() 379 if (source_desc->common.type != ACPI_TYPE_BUFFER) { in acpi_ex_write_data_to_field() 447 } else if ((obj_desc->common.type == ACPI_TYPE_LOCAL_REGION_FIELD) && in acpi_ex_write_data_to_field() [all …]
|
D | utstate.c | 70 state->common.next = *list_head; in acpi_ut_push_generic_state() 101 *list_head = state->common.next; in acpi_ut_pop_generic_state() 130 state->common.descriptor_type = ACPI_DESC_TYPE_STATE; in acpi_ut_create_generic_state() 164 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_THREAD; in acpi_ut_create_thread_state() 208 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_UPDATE; in acpi_ut_create_update_state() 244 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_PACKAGE; in acpi_ut_create_pkg_state() 280 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_CONTROL; in acpi_ut_create_control_state() 281 state->common.state = ACPI_CONTROL_CONDITIONAL_EXECUTING; in acpi_ut_create_control_state()
|
D | dswload.c | 166 if (op->common.node) { in acpi_ds_load1_begin_op() 249 walk_state->scope_info->common.value = ACPI_TYPE_ANY; in acpi_ds_load1_begin_op() 408 op->common.node = node; in acpi_ds_load1_begin_op() 475 if (op->common.aml_opcode == AML_REGION_OP) { in acpi_ds_load1_end_op() 480 common. in acpi_ds_load1_end_op() 483 common. in acpi_ds_load1_end_op() 490 } else if (op->common.aml_opcode == AML_DATA_REGION_OP) { in acpi_ds_load1_end_op() 503 if (op->common.aml_opcode == AML_NAME_OP) { in acpi_ds_load1_end_op() 507 if (op->common.value.arg) { in acpi_ds_load1_end_op() 508 object_type = (acpi_ps_get_opcode_info((op->common. in acpi_ds_load1_end_op() [all …]
|
D | psobject.c | 183 unnamed_op->common.value.arg = NULL; in acpi_ps_build_named_op() 184 unnamed_op->common.arg_list_length = 0; in acpi_ps_build_named_op() 185 unnamed_op->common.aml_opcode = walk_state->opcode; in acpi_ps_build_named_op() 244 acpi_ps_append_arg(*op, unnamed_op->common.value.arg); in acpi_ps_build_named_op() 246 if ((*op)->common.aml_opcode == AML_REGION_OP || in acpi_ps_build_named_op() 247 (*op)->common.aml_opcode == AML_DATA_REGION_OP) { in acpi_ps_build_named_op() 343 acpi_ps_get_opcode_info(parent_scope->common.aml_opcode); in acpi_ps_create_op() 347 if (parent_scope->common.arg_list_length > in acpi_ps_create_op() 349 op->common.flags |= ACPI_PARSEOP_TARGET; in acpi_ps_create_op() 351 } else if (parent_scope->common.aml_opcode == AML_INCREMENT_OP) { in acpi_ps_create_op() [all …]
|
D | dswscope.c | 78 acpi_ut_get_type_name(scope_info->common. in acpi_ds_scope_stack_clear() 132 scope_info->common.descriptor_type = ACPI_DESC_TYPE_STATE_WSCOPE; in acpi_ds_scope_stack_push() 134 scope_info->common.value = (u16) type; in acpi_ds_scope_stack_push() 149 common.value))); in acpi_ds_scope_stack_push() 157 acpi_ut_get_type_name(scope_info->common.value))); in acpi_ds_scope_stack_push() 198 acpi_ut_get_type_name(scope_info->common.value))); in acpi_ds_scope_stack_pop() 207 common.value))); in acpi_ds_scope_stack_pop()
|
D | exdump.c | 283 {ACPI_EXD_UINT16, ACPI_EXD_OFFSET(common.reference_count), 285 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET(common.flags), "Flags"}, 286 {ACPI_EXD_LIST, ACPI_EXD_OFFSET(common.next_object), "Object List"} 399 obj_desc->common.type, in acpi_ex_dump_object() 477 (next), next->common.type); in acpi_ex_dump_object() 479 while (next->common.next_object) { in acpi_ex_dump_object() 480 if ((next->common.type == in acpi_ex_dump_object() 485 next = next->common.next_object; in acpi_ex_dump_object() 489 next->common.type); in acpi_ex_dump_object() 511 (next), next->common.type); in acpi_ex_dump_object() [all …]
|
D | exstore.c | 120 switch (dest_desc->common.type) { in acpi_ex_store() 129 if (dest_desc->common.flags & AOPOBJ_AML_CONSTANT) { in acpi_ex_store() 256 if (source_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE && in acpi_ex_store_object_to_index() 280 index_desc->reference.object)->common. in acpi_ex_store_object_to_index() 291 index_desc->reference.object)->common. in acpi_ex_store_object_to_index() 314 if ((obj_desc->common.type != ACPI_TYPE_BUFFER) && in acpi_ex_store_object_to_index() 315 (obj_desc->common.type != ACPI_TYPE_STRING)) { in acpi_ex_store_object_to_index() 323 switch (source_desc->common.type) { in acpi_ex_store_object_to_index() 446 if (source_desc->common.type != in acpi_ex_store_object_to_node() 532 new_desc->common.type); in acpi_ex_store_object_to_node() [all …]
|
D | utcopy.c | 138 external_object->type = internal_object->common.type; in acpi_ut_copy_isimple_to_esimple() 142 switch (internal_object->common.type) { in acpi_ut_copy_isimple_to_esimple() 224 acpi_ut_get_type_name(internal_object->common. in acpi_ut_copy_isimple_to_esimple() 356 external_object->type = internal_object->common.type; in acpi_ut_copy_ipackage_to_epackage() 400 if (internal_object->common.type == ACPI_TYPE_PACKAGE) { in acpi_ut_copy_iobject_to_eobject() 685 reference_count = dest_desc->common.reference_count; in acpi_ut_copy_simple_object() 686 next_object = dest_desc->common.next_object; in acpi_ut_copy_simple_object() 702 dest_desc->common.reference_count = reference_count; in acpi_ut_copy_simple_object() 703 dest_desc->common.next_object = next_object; in acpi_ut_copy_simple_object() 707 dest_desc->common.flags &= ~AOPOBJ_STATIC_POINTER; in acpi_ut_copy_simple_object() [all …]
|
D | utdelete.c | 91 switch (object->common.type) { in acpi_ut_delete_internal_obj() 100 if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) { in acpi_ut_delete_internal_obj() 116 if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) { in acpi_ut_delete_internal_obj() 403 original_count = object->common.reference_count; in acpi_ut_update_ref_count() 411 object->common.reference_count = new_count; in acpi_ut_update_ref_count() 424 object, object->common.type, new_count)); in acpi_ut_update_ref_count() 433 object->common.reference_count = new_count; in acpi_ut_update_ref_count() 446 object, object->common.type, new_count)); in acpi_ut_update_ref_count() 470 new_count, object, object->common.type)); in acpi_ut_update_ref_count() 521 switch (object->common.type) { in acpi_ut_update_object_reference() [all …]
|
D | exresop.c | 93 (((union acpi_operand_object *)object)->common. in acpi_ex_check_object_type() 214 object_type = obj_desc->common.type; in acpi_ex_resolve_operands() 289 && (obj_desc->common.type == ACPI_TYPE_STRING)) { in acpi_ex_resolve_operands() 337 ((*stack_ptr)->common.type == in acpi_ex_resolve_operands() 492 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() 514 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() 555 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() 579 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() 602 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() 624 switch (obj_desc->common.type) { in acpi_ex_resolve_operands() [all …]
|
D | utids.c | 88 if (obj_desc->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_HID() 111 if (obj_desc->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_HID() 233 if (obj_desc->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_UID() 256 if (obj_desc->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_UID() 328 if (obj_desc->common.type == ACPI_TYPE_PACKAGE) { in acpi_ut_execute_CID() 342 switch (cid_objects[i]->common.type) { in acpi_ut_execute_CID() 384 if (cid_objects[i]->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_CID() 464 if (obj_desc->common.type == ACPI_TYPE_PACKAGE) { in acpi_ut_execute_CLS() 466 && cls_objects[0]->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_CLS() 470 && cls_objects[1]->common.type == ACPI_TYPE_INTEGER) { in acpi_ut_execute_CLS() [all …]
|
D | dbutils.c | 375 if (op->common.aml_opcode == AML_METHOD_OP) { in acpi_db_second_pass_parse() 405 (method->common.value.arg)->common.aml_offset + 1; in acpi_db_second_pass_parse() 406 start_op = (method->common.value.arg)->common.next; in acpi_db_second_pass_parse() 410 search_op->common.aml_offset += base_aml_offset; in acpi_db_second_pass_parse() 416 if (op->common.aml_opcode == AML_REGION_OP) { in acpi_db_second_pass_parse()
|
D | exstorob.c | 88 (target_desc->common.flags & AOPOBJ_STATIC_POINTER)) { in acpi_ex_store_buffer_to_buffer() 143 target_desc->common.flags &= ~AOPOBJ_STATIC_POINTER; in acpi_ex_store_buffer_to_buffer() 185 (!(target_desc->common.flags & AOPOBJ_STATIC_POINTER))) { in acpi_ex_store_string_to_string() 199 (!(target_desc->common.flags & AOPOBJ_STATIC_POINTER))) { in acpi_ex_store_string_to_string() 212 target_desc->common.flags &= ~AOPOBJ_STATIC_POINTER; in acpi_ex_store_string_to_string()
|
D | dsargs.c | 96 op->common.node = scope_node; in acpi_ds_execute_arguments() 127 op->common.node = node; in acpi_ds_execute_arguments() 137 op->common.node = scope_node; in acpi_ds_execute_arguments() 188 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_buffer_field_arguments() 233 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_bank_field_arguments() 283 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_buffer_arguments() 327 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_package_arguments()
|
D | utobject.c | 123 second_object->common.type = ACPI_TYPE_LOCAL_EXTRA; in acpi_ut_create_internal_object_dbg() 124 second_object->common.reference_count = 1; in acpi_ut_create_internal_object_dbg() 128 object->common.next_object = second_object; in acpi_ut_create_internal_object_dbg() 139 object->common.type = (u8) type; in acpi_ut_create_internal_object_dbg() 143 object->common.reference_count = 1; in acpi_ut_create_internal_object_dbg() 493 switch (internal_object->common.type) { in acpi_ut_get_simple_object_size() 552 internal_object->common.type, internal_object)); in acpi_ut_get_simple_object_size() 696 && (internal_object->common.type == ACPI_TYPE_PACKAGE)) { in acpi_ut_get_object_size()
|
D | nsconvert.c | 76 switch (original_object->common.type) { in acpi_ns_convert_to_integer() 140 switch (original_object->common.type) { in acpi_ns_convert_to_string() 227 switch (original_object->common.type) { in acpi_ns_convert_to_buffer() 273 ((*elements)->common.type != ACPI_TYPE_INTEGER)) { in acpi_ns_convert_to_buffer() 336 if (original_object->common.type == ACPI_TYPE_BUFFER) { in acpi_ns_convert_to_unicode() 402 switch (original_object->common.type) { in acpi_ns_convert_to_resource()
|
D | exdebug.c | 152 switch (source_desc->common.type) { in acpi_ex_do_debug_object() 273 switch (object_desc->common.type) { in acpi_ex_do_debug_object() 305 object_desc->common.type); in acpi_ex_do_debug_object() 604 op->common.aml, op->common.aml_op_name); in acpi_ex_start_trace_opcode() 632 op->common.aml, op->common.aml_op_name); in acpi_ex_stop_trace_opcode()
|
D | nsrepair.c | 298 new_object->common.reference_count = in acpi_ns_simple_repair() 299 return_object->common.reference_count; in acpi_ns_simple_repair() 301 if (return_object->common.reference_count > 1) { in acpi_ns_simple_repair() 302 return_object->common.reference_count--; in acpi_ns_simple_repair() 443 new_object->common.reference_count = in acpi_ns_repair_null_element() 444 info->parent_package->common.reference_count; in acpi_ns_repair_null_element()
|
D | exresnte.c | 139 if (source_desc->common.type != ACPI_TYPE_PACKAGE) { in acpi_ex_resolve_node_to_value() 157 if (source_desc->common.type != ACPI_TYPE_BUFFER) { in acpi_ex_resolve_node_to_value() 175 if (source_desc->common.type != ACPI_TYPE_STRING) { in acpi_ex_resolve_node_to_value() 189 if (source_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_ex_resolve_node_to_value()
|
D | exmisc.c | 82 if (obj_desc->common.type != ACPI_TYPE_LOCAL_REFERENCE) { in acpi_ex_get_object_reference() 261 switch (operand0->common.type) { in acpi_ex_do_concatenate() 282 operand0->common.type)); in acpi_ex_do_concatenate() 303 switch (operand0->common.type) { in acpi_ex_do_concatenate() 384 operand0->common.type)); in acpi_ex_do_concatenate() 585 switch (operand0->common.type) { in acpi_ex_do_logical_op() 616 if (operand0->common.type == ACPI_TYPE_INTEGER) { in acpi_ex_do_logical_op()
|
D | nsrepair2.c | 292 switch (return_object->common.type) { in acpi_ns_repair_FDE() 381 if (return_object->common.type == ACPI_TYPE_STRING) { in acpi_ns_repair_CID() 388 if (return_object->common.type != ACPI_TYPE_PACKAGE) { in acpi_ns_repair_CID() 397 original_ref_count = original_element->common.reference_count; in acpi_ns_repair_CID() 410 (*element_ptr)->common.reference_count = in acpi_ns_repair_CID() 536 if (return_object->common.type != ACPI_TYPE_STRING) { in acpi_ns_repair_HID() 642 if (!obj_desc || (obj_desc->common.type != ACPI_TYPE_INTEGER)) { in acpi_ns_repair_PRT() 810 if (return_object->common.type != ACPI_TYPE_PACKAGE) { in acpi_ns_check_sorted_list() 838 if ((*outer_elements)->common.type != ACPI_TYPE_PACKAGE) { in acpi_ns_check_sorted_list() 851 if (obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_ns_check_sorted_list()
|
D | exconvrt.c | 84 switch (obj_desc->common.type) { in acpi_ex_convert_to_integer() 119 switch (obj_desc->common.type) { in acpi_ex_convert_to_integer() 208 switch (obj_desc->common.type) { in acpi_ex_convert_to_buffer() 265 return_desc->common.flags |= AOPOBJ_DATA_VALID; in acpi_ex_convert_to_buffer() 411 switch (obj_desc->common.type) { in acpi_ex_convert_to_string() 608 if (destination_type != source_desc->common.type) { in acpi_ex_convert_to_target_type()
|
D | dswstate.c | 237 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_RESULT; in acpi_ds_result_stack_push() 664 while (extra_op && !extra_op->common.node) { in acpi_ds_init_aml_walk() 665 extra_op = extra_op->common.parent; in acpi_ds_init_aml_walk() 671 parser_state->start_node = extra_op->common.node; in acpi_ds_init_aml_walk() 732 walk_state->control_state = state->common.next; in acpi_ds_delete_walk_state() 741 walk_state->scope_info = state->common.next; in acpi_ds_delete_walk_state() 750 walk_state->results = state->common.next; in acpi_ds_delete_walk_state()
|
D | exresolv.c | 151 switch (stack_desc->common.type) { in acpi_ex_resolve_object_to_value() 297 stack_desc, stack_desc->common.type)); in acpi_ex_resolve_object_to_value() 352 type = obj_desc->common.type; in acpi_ex_resolve_multiple() 394 while (obj_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) { in acpi_ex_resolve_multiple() 527 type = obj_desc->common.type; in acpi_ex_resolve_multiple()
|
D | dsdebug.c | 194 next = op->common.next; in acpi_ds_dump_method_stack() 195 op->common.next = NULL; in acpi_ds_dump_method_stack() 201 op->common.next = next; in acpi_ds_dump_method_stack()
|
D | exconfig.c | 101 obj_desc->common.flags |= AOPOBJ_DATA_VALID; in acpi_ex_add_table() 348 switch (obj_desc->common.type) { in acpi_ex_load_op() 364 if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) { in acpi_ex_load_op() 584 (ddb_handle->common.type != ACPI_TYPE_LOCAL_REFERENCE) || in acpi_ex_unload_table() 585 (!(ddb_handle->common.flags & AOPOBJ_DATA_VALID))) { in acpi_ex_unload_table() 624 ddb_handle->common.flags &= ~AOPOBJ_DATA_VALID; in acpi_ex_unload_table()
|
D | pswalk.c | 92 next = op->common.next; in acpi_ps_delete_parse_tree() 93 parent = op->common.parent; in acpi_ps_delete_parse_tree()
|
/linux-4.4.14/drivers/net/wireless/ath/ath9k/ |
D | link.c | 70 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_hw_check() local 79 ath_dbg(common, RESET, in ath_hw_check() 96 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_hw_pll_rx_hang_check() local 101 ath_dbg(common, RESET, "PLL WAR, resetting the chip\n"); in ath_hw_pll_rx_hang_check() 118 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_hw_pll_work() local 125 if (!test_bit(ATH_OP_BEACONS, &common->op_flags)) in ath_hw_pll_work() 147 struct ath_common *common = ath9k_hw_common(ah); in ath_paprd_activate() local 152 ath_dbg(common, CALIBRATE, "Failed to activate PAPRD\n"); in ath_paprd_activate() 164 ath_dbg(common, CALIBRATE, "Activating PAPRD\n"); in ath_paprd_activate() 173 struct ath_common *common = ath9k_hw_common(ah); in ath_paprd_send_frame() local [all …]
|
D | htc_drv_init.c | 64 static void ath9k_htc_op_ps_wakeup(struct ath_common *common) in ath9k_htc_op_ps_wakeup() argument 66 ath9k_htc_ps_wakeup((struct ath9k_htc_priv *) common->priv); in ath9k_htc_op_ps_wakeup() 69 static void ath9k_htc_op_ps_restore(struct ath_common *common) in ath9k_htc_op_ps_restore() argument 71 ath9k_htc_ps_restore((struct ath9k_htc_priv *) common->priv); in ath9k_htc_op_ps_restore() 237 struct ath_common *common = ath9k_hw_common(ah); in ath9k_regread() local 238 struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *) common->priv; in ath9k_regread() 247 ath_dbg(common, WMI, "REGISTER READ FAILED: (0x%04x, %d)\n", in ath9k_regread() 259 struct ath_common *common = ath9k_hw_common(ah); in ath9k_multi_regread() local 260 struct ath9k_htc_priv *priv = (struct ath9k_htc_priv *) common->priv; in ath9k_multi_regread() 274 ath_dbg(common, WMI, in ath9k_multi_regread() [all …]
|
D | main.c | 99 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_ps_full_sleep() local 102 spin_lock(&common->cc_lock); in ath_ps_full_sleep() 103 ath_hw_cycle_counters_update(common); in ath_ps_full_sleep() 104 spin_unlock(&common->cc_lock); in ath_ps_full_sleep() 114 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath9k_ps_wakeup() local 132 spin_lock(&common->cc_lock); in ath9k_ps_wakeup() 133 ath_hw_cycle_counters_update(common); in ath9k_ps_wakeup() 134 memset(&common->cc_survey, 0, sizeof(common->cc_survey)); in ath9k_ps_wakeup() 135 memset(&common->cc_ani, 0, sizeof(common->cc_ani)); in ath9k_ps_wakeup() 136 spin_unlock(&common->cc_lock); in ath9k_ps_wakeup() [all …]
|
D | htc_drv_main.c | 143 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_set_mac_bssid_mask() local 162 memcpy(common->bssidmask, iter_data.mask, ETH_ALEN); in ath9k_htc_set_mac_bssid_mask() 165 memcpy(common->macaddr, iter_data.hw_macaddr, ETH_ALEN); in ath9k_htc_set_mac_bssid_mask() 167 ath_hw_setbssidmask(common); in ath9k_htc_set_mac_bssid_mask() 187 struct ath_common *common = ath9k_hw_common(ah); in ath9k_htc_reset() local 213 ath_err(common, in ath9k_htc_reset() 245 struct ath_common *common = ath9k_hw_common(ah); in ath9k_htc_set_channel() local 246 struct ieee80211_conf *conf = &common->hw->conf; in ath9k_htc_set_channel() 255 if (test_bit(ATH_OP_INVALID, &common->op_flags)) in ath9k_htc_set_channel() 272 ath_dbg(common, CONFIG, in ath9k_htc_set_channel() [all …]
|
D | wow.c | 53 struct ath_common *common = ath9k_hw_common(ah); in ath9k_wow_add_disassoc_deauth_pattern() local 108 memcpy((dis_deauth_pattern + byte_cnt), common->curbssid, ETH_ALEN); in ath9k_wow_add_disassoc_deauth_pattern() 113 memcpy((dis_deauth_pattern + byte_cnt), common->curbssid, ETH_ALEN); in ath9k_wow_add_disassoc_deauth_pattern() 172 struct ath_common *common = ath9k_hw_common(ah); in ath9k_suspend() local 180 if (test_bit(ATH_OP_INVALID, &common->op_flags)) { in ath9k_suspend() 181 ath_err(common, "Device not present\n"); in ath9k_suspend() 187 ath_err(common, "None of the WoW triggers enabled\n"); in ath9k_suspend() 193 ath_dbg(common, WOW, "WoW for multivif is not yet supported\n"); in ath9k_suspend() 199 if (test_bit(ATH_OP_MULTI_CHANNEL, &common->op_flags)) { in ath9k_suspend() 200 ath_dbg(common, WOW, in ath9k_suspend() [all …]
|
D | init.c | 95 static void ath9k_op_ps_wakeup(struct ath_common *common) in ath9k_op_ps_wakeup() argument 97 ath9k_ps_wakeup((struct ath_softc *) common->priv); in ath9k_op_ps_wakeup() 100 static void ath9k_op_ps_restore(struct ath_common *common) in ath9k_op_ps_restore() argument 102 ath9k_ps_restore((struct ath_softc *) common->priv); in ath9k_op_ps_restore() 119 struct ath_common *common = ath9k_hw_common(ah); in ath9k_iowrite32() local 120 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath9k_iowrite32() 134 struct ath_common *common = ath9k_hw_common(ah); in ath9k_ioread32() local 135 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath9k_ioread32() 174 struct ath_common *common = ath9k_hw_common(ah); in ath9k_reg_rmw() local 175 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath9k_reg_rmw() [all …]
|
D | common-init.c | 125 int ath9k_cmn_init_channels_rates(struct ath_common *common) in ath9k_cmn_init_channels_rates() argument 127 struct ath_hw *ah = (struct ath_hw *)common->ah; in ath9k_cmn_init_channels_rates() 142 common->sbands[IEEE80211_BAND_2GHZ].channels = channels; in ath9k_cmn_init_channels_rates() 143 common->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ; in ath9k_cmn_init_channels_rates() 144 common->sbands[IEEE80211_BAND_2GHZ].n_channels = in ath9k_cmn_init_channels_rates() 146 common->sbands[IEEE80211_BAND_2GHZ].bitrates = ath9k_legacy_rates; in ath9k_cmn_init_channels_rates() 147 common->sbands[IEEE80211_BAND_2GHZ].n_bitrates = in ath9k_cmn_init_channels_rates() 159 common->sbands[IEEE80211_BAND_5GHZ].channels = channels; in ath9k_cmn_init_channels_rates() 160 common->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ; in ath9k_cmn_init_channels_rates() 161 common->sbands[IEEE80211_BAND_5GHZ].n_channels = in ath9k_cmn_init_channels_rates() [all …]
|
D | beacon.c | 36 struct ath_common *common = ath9k_hw_common(ah); in ath9k_beaconq_config() local 61 ath_err(common, "Unable to update h/w beacon queue parameters\n"); in ath9k_beaconq_config() 77 struct ath_common *common = ath9k_hw_common(ah); in ath9k_beacon_setup() local 83 sband = &common->sbands[sc->cur_chandef.chan->band]; in ath9k_beacon_setup() 116 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath9k_beacon_generate() local 149 ath_assign_seq(common, skb); in ath9k_beacon_generate() 160 ath_err(common, "dma_mapping_error on beaconing\n"); in ath9k_beacon_generate() 180 ath_dbg(common, BEACON, in ath9k_beacon_generate() 196 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath9k_beacon_assign_slot() local 213 ath_dbg(common, CONFIG, "Added interface at beacon slot: %d\n", in ath9k_beacon_assign_slot() [all …]
|
D | channel.c | 26 struct ath_common *common = ath9k_hw_common(ah); in ath_set_channel() local 35 if (test_bit(ATH_OP_INVALID, &common->op_flags)) in ath_set_channel() 41 ath_dbg(common, CONFIG, "Set channel: %d MHz width: %d\n", in ath_set_channel() 45 spin_lock_bh(&common->cc_lock); in ath_set_channel() 47 spin_unlock_bh(&common->cc_lock); in ath_set_channel() 90 ath_dbg(common, DFS, "DFS enabled at freq %d\n", in ath_set_channel() 94 if (test_bit(ATH_OP_SCANNING, &common->op_flags) && in ath_set_channel() 96 ath9k_cmn_spectral_scan_trigger(common, &sc->spec_priv); in ath_set_channel() 105 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_chanctx_init() local 110 sband = &common->sbands[IEEE80211_BAND_2GHZ]; in ath_chanctx_init() [all …]
|
D | recv.c | 41 struct ath_common *common = ath9k_hw_common(ah); in ath_rx_buf_link() local 60 common->rx_bufsize, in ath_rx_buf_link() 91 struct ath_common *common = ath9k_hw_common(ah); in ath_opmode_init() local 100 ath_hw_setbssidmask(common); in ath_opmode_init() 141 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_rx_addbuffer_edma() local 145 ath_dbg(common, QUEUE, "No free rx buf available\n"); in ath_rx_addbuffer_edma() 174 struct ath_common *common = ath9k_hw_common(ah); in ath_rx_edma_cleanup() local 183 common->rx_bufsize, in ath_rx_edma_cleanup() 200 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_rx_edma_init() local 207 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize - in ath_rx_edma_init() [all …]
|
D | common-spectral.c | 149 struct ath_common *common = ath9k_hw_common(spec_priv->ah); in ath_cmn_process_ht20_fft() local 186 ath_dbg(common, SPECTRAL_SCAN, "FFT HT20 frame: max mag 0x%X," in ath_cmn_process_ht20_fft() 192 ath_dbg(common, SPECTRAL_SCAN, "Magnitude mismatch !\n"); in ath_cmn_process_ht20_fft() 218 ath_dbg(common, SPECTRAL_SCAN, in ath_cmn_process_ht20_fft() 224 ath_dbg(common, SPECTRAL_SCAN, in ath_cmn_process_ht20_fft() 229 ath_dbg(common, SPECTRAL_SCAN, in ath_cmn_process_ht20_fft() 253 struct ath_common *common = ath9k_hw_common(spec_priv->ah); in ath_cmn_process_ht20_40_fft() local 326 ath_dbg(common, SPECTRAL_SCAN, "FFT HT20/40 frame: lower mag 0x%X," in ath_cmn_process_ht20_40_fft() 357 ath_dbg(common, SPECTRAL_SCAN, "Magnitude mismatch !\n"); in ath_cmn_process_ht20_40_fft() 383 ath_dbg(common, SPECTRAL_SCAN, in ath_cmn_process_ht20_40_fft() [all …]
|
D | common.c | 31 bool ath9k_cmn_rx_accept(struct ath_common *common, in ath9k_cmn_rx_accept() argument 38 struct ath_hw *ah = common->ah; in ath9k_cmn_rx_accept() 46 test_bit(rx_stats->rs_keyix, common->tkip_keymap); in ath9k_cmn_rx_accept() 59 !test_bit(rx_stats->rs_keyix, common->ccmp_keymap)) in ath9k_cmn_rx_accept() 118 void ath9k_cmn_rx_skb_postprocess(struct ath_common *common, in ath9k_cmn_rx_skb_postprocess() argument 124 struct ath_hw *ah = common->ah; in ath9k_cmn_rx_skb_postprocess() 159 if (test_bit(keyix, common->keymap)) in ath9k_cmn_rx_skb_postprocess() 170 int ath9k_cmn_process_rate(struct ath_common *common, in ath9k_cmn_process_rate() argument 178 struct ath_hw *ah = common->ah; in ath9k_cmn_process_rate() 212 void ath9k_cmn_process_rssi(struct ath_common *common, in ath9k_cmn_process_rssi() argument [all …]
|
D | htc_drv_beacon.c | 140 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_send_buffered() local 168 ath_dbg(common, XMIT, "No free CAB slot\n"); in ath9k_htc_send_buffered() 178 ath_dbg(common, XMIT, "Failed to send CAB frame\n"); in ath9k_htc_send_buffered() 194 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_send_beacon() local 212 if (unlikely(test_bit(ATH_OP_SCANNING, &common->op_flags))) { in ath9k_htc_send_beacon() 253 ath_dbg(common, BSTUCK, in ath9k_htc_send_beacon() 267 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_choose_bslot() local 280 ath_dbg(common, BEACON, in ath9k_htc_choose_bslot() 290 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_swba() local 296 ath_dbg(common, BSTUCK, "Beacon stuck, HW reset\n"); in ath9k_htc_swba() [all …]
|
D | ar9002_calib.c | 52 struct ath_common *common = ath9k_hw_common(ah); in ar9002_hw_setup_calibration() local 61 ath_dbg(common, CALIBRATE, in ar9002_hw_setup_calibration() 66 ath_dbg(common, CALIBRATE, "starting ADC Gain Calibration\n"); in ar9002_hw_setup_calibration() 70 ath_dbg(common, CALIBRATE, "starting ADC DC Calibration\n"); in ar9002_hw_setup_calibration() 185 struct ath_common *common = ath9k_hw_common(ah); in ar9002_hw_iqcalibrate() local 196 ath_dbg(common, CALIBRATE, in ar9002_hw_iqcalibrate() 200 ath_dbg(common, CALIBRATE, in ar9002_hw_iqcalibrate() 211 ath_dbg(common, CALIBRATE, "Chn %d pwr_meas_i = 0x%08x\n", in ar9002_hw_iqcalibrate() 213 ath_dbg(common, CALIBRATE, "Chn %d pwr_meas_q = 0x%08x\n", in ar9002_hw_iqcalibrate() 215 ath_dbg(common, CALIBRATE, "iqCorrNeg is 0x%08x\n", iqCorrNeg); in ar9002_hw_iqcalibrate() [all …]
|
D | mci.c | 41 static bool ath_mci_add_profile(struct ath_common *common, in ath_mci_add_profile() argument 73 static void ath_mci_del_profile(struct ath_common *common, in ath_mci_del_profile() argument 121 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in ath_mci_update_scheme() local 152 ath_dbg(common, MCI, in ath_mci_update_scheme() 162 ath_dbg(common, MCI, in ath_mci_update_scheme() 168 ath_dbg(common, MCI, in ath_mci_update_scheme() 176 ath_dbg(common, MCI, in ath_mci_update_scheme() 181 ath_dbg(common, MCI, in ath_mci_update_scheme() 213 struct ath_common *common = ath9k_hw_common(ah); in ath_mci_cal_msg() local 223 ath_dbg(common, MCI, "MCI State : %d\n", mci_hw->bt_state); in ath_mci_cal_msg() [all …]
|
D | ani.c | 157 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_set_ofdm_nil() local 162 ath_dbg(common, ANI, "**** ofdmlevel %d=>%d, rssi=%d[lo=%d hi=%d]\n", in ath9k_hw_set_ofdm_nil() 242 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_set_cck_nil() local 246 ath_dbg(common, ANI, "**** ccklevel %d=>%d, rssi=%d[lo=%d hi=%d]\n", in ath9k_hw_set_cck_nil() 329 struct ath_common *common = ath9k_hw_common(ah); in ath9k_ani_reset() local 356 ath_dbg(common, ANI, in ath9k_ani_reset() 371 ath_dbg(common, ANI, in ath9k_ani_reset() 387 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_ani_read_counters() local 392 ath_hw_cycle_counters_update(common); in ath9k_hw_ani_read_counters() 393 listenTime = ath_hw_get_listen_time(common); in ath9k_hw_ani_read_counters() [all …]
|
D | dfs.c | 106 struct ath_common *common = ath9k_hw_common(ah); in ath9k_check_chirping() local 115 ath_dbg(common, DFS, "HT40: datalen=%d, num_fft_packets=%d\n", in ath9k_check_chirping() 118 ath_dbg(common, DFS, "not enough packets for chirp\n"); in ath9k_check_chirping() 124 ath_dbg(common, DFS, "fixing datalen by 2\n"); in ath9k_check_chirping() 139 ath_dbg(common, DFS, "HT20: datalen=%d, num_fft_packets=%d\n", in ath9k_check_chirping() 142 ath_dbg(common, DFS, "not enough packets for chirp\n"); in ath9k_check_chirping() 149 ath_dbg(common, DFS, "bin_max = [%d, %d, %d, %d]\n", in ath9k_check_chirping() 163 ath_dbg(common, DFS, "CHIRP: invalid delta %d " in ath9k_check_chirping() 171 ath_dbg(common, DFS, "CHIRP: ddelta %d too high\n", in ath9k_check_chirping() 176 ath_dbg(common, DFS, "CHIRP - %d: delta=%d, ddelta=%d\n", in ath9k_check_chirping() [all …]
|
D | ar9003_calib.c | 41 struct ath_common *common = ath9k_hw_common(ah); in ar9003_hw_setup_calibration() local 55 ath_dbg(common, CALIBRATE, in ar9003_hw_setup_calibration() 62 ath_err(common, "Invalid calibration type\n"); in ar9003_hw_setup_calibration() 200 struct ath_common *common = ath9k_hw_common(ah); in ar9003_hw_iqcalibrate() local 216 ath_dbg(common, CALIBRATE, in ar9003_hw_iqcalibrate() 219 ath_dbg(common, CALIBRATE, in ar9003_hw_iqcalibrate() 230 ath_dbg(common, CALIBRATE, "Chn %d pwr_meas_i = 0x%08x\n", in ar9003_hw_iqcalibrate() 232 ath_dbg(common, CALIBRATE, "Chn %d pwr_meas_q = 0x%08x\n", in ar9003_hw_iqcalibrate() 234 ath_dbg(common, CALIBRATE, "iqCorrNeg is 0x%08x\n", iqCorrNeg); in ar9003_hw_iqcalibrate() 242 ath_dbg(common, CALIBRATE, "Chn %d iCoff = 0x%08x\n", in ar9003_hw_iqcalibrate() [all …]
|
D | common-beacon.c | 59 struct ath_common *common = ath9k_hw_common(ah); in ath9k_cmn_beacon_config_sta() local 64 if (!test_bit(ATH_OP_PRIM_STA_VIF, &common->op_flags)) { in ath9k_cmn_beacon_config_sta() 65 ath_dbg(common, BEACON, in ath9k_cmn_beacon_config_sta() 122 ath_dbg(common, BEACON, "bmiss: %u sleep: %u\n", in ath9k_cmn_beacon_config_sta() 131 struct ath_common *common = ath9k_hw_common(ah); in ath9k_cmn_beacon_config_adhoc() local 146 ath_dbg(common, BEACON, in ath9k_cmn_beacon_config_adhoc() 162 struct ath_common *common = ath9k_hw_common(ah); in ath9k_cmn_beacon_config_ap() local 175 ath_dbg(common, BEACON, in ath9k_cmn_beacon_config_ap()
|
D | calib.c | 85 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_update_nfcal_hist_buffer() local 119 ath_dbg(common, CALIBRATE, in ath9k_hw_update_nfcal_hist_buffer() 188 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_reset_calvalid() local 201 ath_dbg(common, CALIBRATE, "Calibration state incorrect, %d\n", in ath9k_hw_reset_calvalid() 209 ath_dbg(common, CALIBRATE, "Resetting Cal %d state for channel %u\n", in ath9k_hw_reset_calvalid() 242 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_loadnf() local 300 ath_dbg(common, ANY, in ath9k_hw_loadnf() 329 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_nf_sanitize() local 342 ath_dbg(common, CALIBRATE, in ath9k_hw_nf_sanitize() 347 ath_dbg(common, CALIBRATE, in ath9k_hw_nf_sanitize() [all …]
|
D | hw.c | 42 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_set_clockrate() local 67 common->clockrate = clockrate; in ath9k_hw_set_clockrate() 72 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_mac_to_clks() local 74 return usecs * common->clockrate; in ath9k_hw_mac_to_clks() 334 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_chip_test() local 358 ath_err(common, in ath9k_hw_chip_test() 369 ath_err(common, in ath9k_hw_chip_test() 384 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_init_config() local 433 ath_dbg(common, RESET, "serialize_regmode is %d\n", in ath9k_hw_init_config() 476 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_init_macaddr() local [all …]
|
D | common.h | 63 bool ath9k_cmn_rx_accept(struct ath_common *common, 69 void ath9k_cmn_rx_skb_postprocess(struct ath_common *common, 74 int ath9k_cmn_process_rate(struct ath_common *common, 78 void ath9k_cmn_process_rssi(struct ath_common *common, 87 void ath9k_cmn_btcoex_bt_stomp(struct ath_common *common,
|
D | dynack.c | 66 struct ath_common *common = ath9k_hw_common(ah); in ath_dynack_bssidmask() local 69 if ((common->macaddr[i] & common->bssidmask[i]) != in ath_dynack_bssidmask() 70 (mac[i] & common->bssidmask[i])) in ath_dynack_bssidmask() 88 struct ath_common *common = ath9k_hw_common(ah); in ath_dynack_compute_ackto() local 99 ath_dbg(common, DYNACK, "ACK timeout %u slottime %u\n", in ath_dynack_compute_ackto() 177 struct ath_common *common = ath9k_hw_common(ah); in ath_dynack_sample_tx_ts() local 191 ath_dbg(common, DYNACK, "late ack\n"); in ath_dynack_sample_tx_ts() 214 rate = &common->sbands[info->band].bitrates[rates[ridx].idx]; in ath_dynack_sample_tx_ts() 225 ath_dbg(common, DYNACK, "{%pM} tx sample %u [dur %u][h %u-t %u]\n", in ath_dynack_sample_tx_ts() 251 struct ath_common *common = ath9k_hw_common(ah); in ath_dynack_sample_ack_ts() local [all …]
|
D | Makefile | 59 ath9k_common-y:= common.o \ 60 common-init.o \ 61 common-beacon.o \ 62 common-debug.o \ 63 common-spectral.o
|
D | tx99.c | 22 struct ath_common *common = ath9k_hw_common(ah); in ath9k_tx99_stop() local 37 ath_dbg(common, XMIT, "TX99 stopped\n"); in ath9k_tx99_stop() 113 struct ath_common *common = ath9k_hw_common(ah); in ath9k_tx99_init() local 117 if (test_bit(ATH_OP_INVALID, &common->op_flags)) { in ath9k_tx99_init() 118 ath_err(common, in ath9k_tx99_init() 149 ath_dbg(common, XMIT, "Failed to xmit TX99 skb\n"); in ath9k_tx99_init() 153 ath_dbg(common, XMIT, "TX99 xmit started using %d ( %ddBm)\n", in ath9k_tx99_init() 177 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in write_file_tx99() local 196 ath_dbg(common, XMIT, "Resetting TX99\n"); in write_file_tx99()
|
D | mac.c | 200 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_set_txq_props() local 205 ath_dbg(common, QUEUE, in ath9k_hw_set_txq_props() 210 ath_dbg(common, QUEUE, "Set queue properties for: %u\n", q); in ath9k_hw_set_txq_props() 264 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_get_txq_props() local 269 ath_dbg(common, QUEUE, in ath9k_hw_get_txq_props() 296 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_setuptxqueue() local 317 ath_err(common, "Invalid TX queue type: %u\n", type); in ath9k_hw_setuptxqueue() 321 ath_dbg(common, QUEUE, "Setup TX queue: %u\n", q); in ath9k_hw_setuptxqueue() 325 ath_err(common, "TX queue: %u already active\n", q); in ath9k_hw_setuptxqueue() 348 struct ath_common *common = ath9k_hw_common(ah); in ath9k_hw_releasetxqueue() local [all …]
|
D | ar9003_mci.c | 36 struct ath_common *common = ath9k_hw_common(ah); in ar9003_mci_wait_for_interrupt() local 66 ath_dbg(common, MCI, in ar9003_mci_wait_for_interrupt() 69 ath_dbg(common, MCI, in ar9003_mci_wait_for_interrupt() 226 struct ath_common *common = ath9k_hw_common(ah); in ar9003_mci_prep_interface() local 298 ath_dbg(common, MCI, in ar9003_mci_prep_interface() 301 ath_dbg(common, MCI, in ar9003_mci_prep_interface() 371 struct ath_common *common = ath9k_hw_common(ah); in ar9003_mci_get_isr() local 379 ath_dbg(common, MCI, in ar9003_mci_get_isr() 526 struct ath_common *common = ath9k_hw_common(ah); in ar9003_mci_process_gpm_extra() local 535 ath_dbg(common, MCI, "MCI Recv GPM COEX Version Query\n"); in ar9003_mci_process_gpm_extra() [all …]
|
D | pci.c | 769 static void ath_pci_read_cachesize(struct ath_common *common, int *csz) in ath_pci_read_cachesize() argument 771 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath_pci_read_cachesize() 787 static bool ath_pci_eeprom_read(struct ath_common *common, u32 off, u16 *data) in ath_pci_eeprom_read() argument 789 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath_pci_eeprom_read() 794 ath_err(common, in ath_pci_eeprom_read() 801 struct ath_hw *ah = (struct ath_hw *) common->ah; in ath_pci_eeprom_read() 803 common->ops->read(ah, AR5416_EEPROM_OFFSET + in ath_pci_eeprom_read() 814 *data = MS(common->ops->read(ah, AR_EEPROM_STATUS_DATA), in ath_pci_eeprom_read() 822 static void ath_pci_aspm_init(struct ath_common *common) in ath_pci_aspm_init() argument 824 struct ath_softc *sc = (struct ath_softc *) common->priv; in ath_pci_aspm_init() [all …]
|
D | htc_drv_txrx.c | 133 struct ath_common *common = ath9k_hw_common(priv->ah); in get_htc_epid_queue() local 149 ath_err(common, "Invalid EPID: %d\n", epid); in get_htc_epid_queue() 160 struct ath_common *common = ath9k_hw_common(priv->ah); in strip_drv_header() local 181 ath_err(common, "Unsupported EPID: %d\n", tx_ctl->epid); in strip_drv_header() 616 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_tx_get_packet() local 636 ath_dbg(common, XMIT, "No matching packet for cookie: %d, epid: %d\n", in ath9k_htc_tx_get_packet() 712 struct ath_common *common = ath9k_hw_common(priv->ah); in check_packet() local 720 ath_dbg(common, XMIT, "Dropping a packet due to TX timeout\n"); in check_packet() 758 struct ath_common *common = ath9k_hw_common(priv->ah); in ath9k_htc_tx_cleanup_timer() local 767 ath_dbg(common, XMIT, in ath9k_htc_tx_cleanup_timer() [all …]
|
D | ahb.c | 54 static void ath_ahb_read_cachesize(struct ath_common *common, int *csz) in ath_ahb_read_cachesize() argument 59 static bool ath_ahb_eeprom_read(struct ath_common *common, u32 off, u16 *data) in ath_ahb_eeprom_read() argument 61 struct ath_softc *sc = (struct ath_softc *)common->priv; in ath_ahb_eeprom_read() 67 ath_err(common, in ath_ahb_eeprom_read()
|
D | debug.c | 90 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in read_file_debug() local 94 len = sprintf(buf, "0x%08x\n", common->debug_mask); in read_file_debug() 102 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in write_file_debug() local 115 common->debug_mask = mask; in write_file_debug() 136 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in read_file_ani() local 168 common->disable_ani ? "DISABLED" : "ENABLED"); in read_file_ani() 170 if (common->disable_ani) in read_file_ani() 192 struct ath_common *common = ath9k_hw_common(sc->sc_ah); in write_file_ani() local 208 common->disable_ani = !ani; in write_file_ani() 210 if (common->disable_ani) { in write_file_ani() [all …]
|
D | htc_drv_gpio.c | 69 struct ath_common *common = ath9k_hw_common(priv->ah); in ath_btcoex_period_work() local 78 ath_err(common, "Unable to set BTCOEX parameters\n"); in ath_btcoex_period_work() 104 struct ath_common *common = ath9k_hw_common(ah); in ath_btcoex_duty_cycle_work() local 106 ath_dbg(common, BTCOEX, "time slice work for bt and wlan\n"); in ath_btcoex_duty_cycle_work() 185 struct ath_common *common = ath9k_hw_common(ah); in ath9k_htc_init_btcoex() local 191 if (!common->btcoex_enabled) { in ath9k_htc_init_btcoex()
|
D | ar9003_phy.c | 1089 struct ath_common *common = ath9k_hw_common(ah); in ar9003_hw_ani_control() local 1173 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1191 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1228 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1236 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1256 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1292 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1300 ath_dbg(common, ANI, in ar9003_hw_ani_control() 1331 ath_dbg(common, ANI, "** ch %d: MRC CCK: %s=>%s\n", in ar9003_hw_ani_control() 1344 ath_dbg(common, ANI, "invalid cmd %u\n", cmd); in ar9003_hw_ani_control() [all …]
|
D | ar5008_phy.c | 146 struct ath_common *common = ath9k_hw_common(ah); in ar5008_hw_force_bias() local 166 ath_dbg(common, CONFIG, "Force rf_pwd_icsyndiv to %1d on %4d\n", in ar5008_hw_force_bias() 187 struct ath_common *common = ath9k_hw_common(ah); in ar5008_hw_set_channel() local 208 ath_err(common, "Invalid channel %u MHz\n", freq); in ar5008_hw_set_channel() 240 ath_err(common, "Invalid channel %u MHz\n", freq); in ar5008_hw_set_channel() 710 struct ath_common *common = ath9k_hw_common(ah); in ar5008_hw_process_ini() local 749 && (common->bus_ops->ath_bus_type != ATH_USB)) { in ar5008_hw_process_ini() 781 && (common->bus_ops->ath_bus_type != ATH_USB)) { in ar5008_hw_process_ini() 942 struct ath_common *common = ath9k_hw_common(ah); in ar5008_hw_ani_control_new() local 1015 ath_dbg(common, ANI, in ar5008_hw_ani_control_new() [all …]
|
/linux-4.4.14/drivers/thermal/ |
D | rcar_thermal.c | 60 struct rcar_thermal_common *common; member 69 #define rcar_thermal_for_each_priv(pos, common) \ argument 70 list_for_each_entry(pos, &common->head, list) 74 #define rcar_priv_to_dev(priv) ((priv)->common->dev) 75 #define rcar_has_irq_support(priv) ((priv)->common->base) 89 static u32 _rcar_thermal_common_read(struct rcar_thermal_common *common, in _rcar_thermal_common_read() argument 92 return ioread32(common->base + reg); in _rcar_thermal_common_read() 97 static void _rcar_thermal_common_write(struct rcar_thermal_common *common, in _rcar_thermal_common_write() argument 100 iowrite32(data, common->base + reg); in _rcar_thermal_common_write() 105 static void _rcar_thermal_common_bset(struct rcar_thermal_common *common, in _rcar_thermal_common_bset() argument [all …]
|
/linux-4.4.14/arch/ia64/include/asm/sn/ |
D | geo.h | 36 geo_common_t common; /* No additional fields needed */ member 40 geo_common_t common; /* No additional fields needed */ member 44 geo_common_t common; /* No additional fields needed */ member 48 geo_iocntl_t common; member 67 geo_common_t common; member 114 return (g.common.type == GEO_TYPE_INVALID) ? in geo_slab() 115 INVALID_SLAB : g.common.slab; in geo_slab() 120 return (g.common.type == GEO_TYPE_INVALID) ? in geo_slot() 121 INVALID_SLOT : g.common.slot; in geo_slot() 126 return (g.common.type == GEO_TYPE_INVALID) ? in geo_module() [all …]
|
/linux-4.4.14/drivers/clk/ti/ |
D | Makefile | 2 clk-common = dpll.o composite.o divider.o gate.o \ 5 obj-$(CONFIG_SOC_AM33XX) += $(clk-common) clk-33xx.o dpll3xxx.o 6 obj-$(CONFIG_SOC_TI81XX) += $(clk-common) fapll.o clk-814x.o clk-816x.o 7 obj-$(CONFIG_ARCH_OMAP2) += $(clk-common) interface.o clk-2xxx.o 8 obj-$(CONFIG_ARCH_OMAP3) += $(clk-common) interface.o \ 10 obj-$(CONFIG_ARCH_OMAP4) += $(clk-common) clk-44xx.o \ 12 obj-$(CONFIG_SOC_OMAP5) += $(clk-common) clk-54xx.o \ 14 obj-$(CONFIG_SOC_DRA7XX) += $(clk-common) clk-7xx.o \ 16 obj-$(CONFIG_SOC_AM43XX) += $(clk-common) dpll3xxx.o clk-43xx.o
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/ |
D | offloading.c | 103 struct iwl_proto_offload_cmd_common *common; in iwl_mvm_send_proto_offload() local 193 common = &cmd.v3s.common; in iwl_mvm_send_proto_offload() 196 common = &cmd.v3l.common; in iwl_mvm_send_proto_offload() 199 common = &cmd.v2.common; in iwl_mvm_send_proto_offload() 202 common = &cmd.v1.common; in iwl_mvm_send_proto_offload() 208 common->host_ipv4_addr = vif->bss_conf.arp_addr_list[0]; in iwl_mvm_send_proto_offload() 209 memcpy(common->arp_mac_addr, vif->addr, ETH_ALEN); in iwl_mvm_send_proto_offload() 213 common->enabled = cpu_to_le32(enabled); in iwl_mvm_send_proto_offload()
|
/linux-4.4.14/include/net/ |
D | act_api.h | 27 #define tcf_head common.tcfc_head 28 #define tcf_index common.tcfc_index 29 #define tcf_refcnt common.tcfc_refcnt 30 #define tcf_bindcnt common.tcfc_bindcnt 31 #define tcf_capab common.tcfc_capab 32 #define tcf_action common.tcfc_action 33 #define tcf_tm common.tcfc_tm 34 #define tcf_bstats common.tcfc_bstats 35 #define tcf_qstats common.tcfc_qstats 36 #define tcf_rate_est common.tcfc_rate_est [all …]
|
/linux-4.4.14/tools/firewire/ |
D | nosy-dump.h | 20 } common, link_on; member 90 } common; member 93 uint32_t common[3]; member 98 uint32_t common[3]; member 104 uint32_t common[3]; member 111 uint32_t common[3]; member 120 uint32_t common[3]; member 126 uint32_t common[3]; member 135 uint32_t common[3]; member 140 uint32_t common[3]; member
|
D | nosy-dump.c | 501 t = link_transaction_lookup(p->common.source, p->common.destination, in handle_request_packet() 502 p->common.tlabel); in handle_request_packet() 519 if (prev->packet.common.tcode != sa->packet.common.tcode || in handle_request_packet() 520 prev->packet.common.tlabel != sa->packet.common.tlabel) { in handle_request_packet() 530 if (p->common.tcode != TCODE_WRITE_QUADLET_REQUEST && in handle_request_packet() 531 p->common.tcode != TCODE_WRITE_BLOCK_REQUEST) in handle_request_packet() 566 t = link_transaction_lookup(p->common.destination, p->common.source, in handle_response_packet() 567 p->common.tlabel); in handle_response_packet() 585 if (prev->packet.common.tcode != sa->packet.common.tcode || in handle_response_packet() 586 prev->packet.common.tlabel != sa->packet.common.tlabel) { in handle_response_packet() [all …]
|
D | decode-fcp.c | 178 ((unsigned long long) t->request->packet.common.offset_high << 32) | in decode_fcp() 179 t->request->packet.common.offset_low; in decode_fcp() 181 if (t->request->packet.common.tcode != TCODE_WRITE_BLOCK_REQUEST) in decode_fcp()
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx5/core/ |
D | qp.c | 46 struct mlx5_core_rsc_common *common; in mlx5_get_rsc() local 50 common = radix_tree_lookup(&table->tree, rsn); in mlx5_get_rsc() 51 if (common) in mlx5_get_rsc() 52 atomic_inc(&common->refcount); in mlx5_get_rsc() 56 if (!common) { in mlx5_get_rsc() 61 return common; in mlx5_get_rsc() 64 void mlx5_core_put_rsc(struct mlx5_core_rsc_common *common) in mlx5_core_put_rsc() argument 66 if (atomic_dec_and_test(&common->refcount)) in mlx5_core_put_rsc() 67 complete(&common->free); in mlx5_core_put_rsc() 72 struct mlx5_core_rsc_common *common = mlx5_get_rsc(dev, rsn); in mlx5_rsc_event() local [all …]
|
/linux-4.4.14/net/batman-adv/ |
D | translation-table.c | 168 common); in batadv_tt_local_hash_find() 193 common); in batadv_tt_global_hash_find() 200 if (atomic_dec_and_test(&tt_local_entry->common.refcount)) in batadv_tt_local_entry_free_ref() 201 kfree_rcu(tt_local_entry, common.rcu); in batadv_tt_local_entry_free_ref() 212 if (atomic_dec_and_test(&tt_global_entry->common.refcount)) { in batadv_tt_global_entry_free_ref() 214 kfree_rcu(tt_global_entry, common.rcu); in batadv_tt_global_entry_free_ref() 370 struct batadv_tt_common_entry *common = &tt_local_entry->common; in batadv_tt_local_event() local 371 u8 flags = common->flags | event_flags; in batadv_tt_local_event() 382 ether_addr_copy(tt_change_node->change.addr, common->addr); in batadv_tt_local_event() 383 tt_change_node->change.vid = htons(common->vid); in batadv_tt_local_event() [all …]
|
/linux-4.4.14/drivers/iio/common/ |
D | Kconfig | 2 # IIO common modules 5 source "drivers/iio/common/hid-sensors/Kconfig" 6 source "drivers/iio/common/ms_sensors/Kconfig" 7 source "drivers/iio/common/ssp_sensors/Kconfig" 8 source "drivers/iio/common/st_sensors/Kconfig"
|
/linux-4.4.14/drivers/scsi/ibmvscsi/ |
D | viosrp.h | 141 struct mad_common common; member 147 struct mad_common common; member 152 struct mad_common common; member 157 struct mad_common common; member 162 struct mad_common common; member 166 struct mad_common common; member 177 struct mad_capability_common common; member 182 struct mad_capability_common common; member
|
D | ibmvfc.h | 147 struct ibmvfc_mad_common common; member 152 struct ibmvfc_mad_common common; member 191 struct ibmvfc_common_svc_parms common; member 241 struct ibmvfc_mad_common common; member 280 struct ibmvfc_mad_common common; member 317 struct ibmvfc_mad_common common; member 328 struct ibmvfc_mad_common common; member 339 struct ibmvfc_mad_common common; member 345 struct ibmvfc_mad_common common; member 487 struct ibmvfc_mad_common common; member
|
/linux-4.4.14/drivers/virtio/ |
D | virtio_pci_modern.c | 148 vp_iowrite32(0, &vp_dev->common->device_feature_select); in vp_get_features() 149 features = vp_ioread32(&vp_dev->common->device_feature); in vp_get_features() 150 vp_iowrite32(1, &vp_dev->common->device_feature_select); in vp_get_features() 151 features |= ((u64)vp_ioread32(&vp_dev->common->device_feature) << 32); in vp_get_features() 170 vp_iowrite32(0, &vp_dev->common->guest_feature_select); in vp_finalize_features() 171 vp_iowrite32((u32)vdev->features, &vp_dev->common->guest_feature); in vp_finalize_features() 172 vp_iowrite32(1, &vp_dev->common->guest_feature_select); in vp_finalize_features() 173 vp_iowrite32(vdev->features >> 32, &vp_dev->common->guest_feature); in vp_finalize_features() 252 return vp_ioread8(&vp_dev->common->config_generation); in vp_generation() 259 return vp_ioread8(&vp_dev->common->device_status); in vp_get_status() [all …]
|
/linux-4.4.14/drivers/media/common/ |
D | Kconfig | 1 # Used by common drivers, when they need to ask questions 5 comment "common driver options" 19 source "drivers/media/common/b2c2/Kconfig" 20 source "drivers/media/common/saa7146/Kconfig" 21 source "drivers/media/common/siano/Kconfig"
|
/linux-4.4.14/drivers/usb/gadget/legacy/ |
D | mass_storage.c | 113 static int msg_thread_exits(struct fsg_common *common) in msg_thread_exits() argument 172 status = fsg_common_set_num_buffers(opts->common, fsg_num_buffers); in msg_bind() 176 fsg_common_set_ops(opts->common, &ops); in msg_bind() 178 status = fsg_common_set_cdev(opts->common, cdev, config.can_stall); in msg_bind() 182 fsg_common_set_sysfs(opts->common, true); in msg_bind() 183 status = fsg_common_create_luns(opts->common, &config); in msg_bind() 187 fsg_common_set_inquiry_string(opts->common, config.vendor_name, in msg_bind() 220 fsg_common_remove_luns(opts->common); in msg_bind() 222 fsg_common_free_buffers(opts->common); in msg_bind()
|
D | acm_ms.c | 181 status = fsg_common_set_num_buffers(opts->common, fsg_num_buffers); in acm_ms_bind() 185 status = fsg_common_set_cdev(opts->common, cdev, config.can_stall); in acm_ms_bind() 189 fsg_common_set_sysfs(opts->common, true); in acm_ms_bind() 190 status = fsg_common_create_luns(opts->common, &config); in acm_ms_bind() 194 fsg_common_set_inquiry_string(opts->common, config.vendor_name, in acm_ms_bind() 232 fsg_common_remove_luns(opts->common); in acm_ms_bind() 234 fsg_common_free_buffers(opts->common); in acm_ms_bind()
|
D | nokia.c | 330 status = fsg_common_set_num_buffers(fsg_opts->common, fsg_num_buffers); in nokia_bind() 334 status = fsg_common_set_cdev(fsg_opts->common, cdev, fsg_config.can_stall); in nokia_bind() 338 fsg_common_set_sysfs(fsg_opts->common, true); in nokia_bind() 340 status = fsg_common_create_luns(fsg_opts->common, &fsg_config); in nokia_bind() 344 fsg_common_set_inquiry_string(fsg_opts->common, fsg_config.vendor_name, in nokia_bind() 373 fsg_common_remove_luns(fsg_opts->common); in nokia_bind() 375 fsg_common_free_buffers(fsg_opts->common); in nokia_bind()
|
D | multi.c | 380 status = fsg_common_set_num_buffers(fsg_opts->common, fsg_num_buffers); in multi_bind() 384 status = fsg_common_set_cdev(fsg_opts->common, cdev, config.can_stall); in multi_bind() 388 fsg_common_set_sysfs(fsg_opts->common, true); in multi_bind() 389 status = fsg_common_create_luns(fsg_opts->common, &config); in multi_bind() 393 fsg_common_set_inquiry_string(fsg_opts->common, config.vendor_name, in multi_bind() 433 fsg_common_remove_luns(fsg_opts->common); in multi_bind() 435 fsg_common_free_buffers(fsg_opts->common); in multi_bind()
|
/linux-4.4.14/drivers/usb/common/ |
D | Makefile | 5 obj-$(CONFIG_USB_COMMON) += usb-common.o 6 usb-common-y += common.o 7 usb-common-$(CONFIG_USB_LED_TRIG) += led.o
|
/linux-4.4.14/arch/ia64/sn/pci/pcibr/ |
D | pcibr_dma.c | 248 struct sn_flush_device_common *common; in sn_dma_flush() local 297 common = p->common; in sn_dma_flush() 299 if (common->sfdl_bar_list[j].start == 0) in sn_dma_flush() 301 if (addr >= common->sfdl_bar_list[j].start in sn_dma_flush() 302 && addr <= common->sfdl_bar_list[j].end) in sn_dma_flush() 305 if (j < PCI_ROM_RESOURCE && common->sfdl_bar_list[j].start != 0) in sn_dma_flush() 332 pcireg_wrb_flush_get(common->sfdl_pcibus_info, in sn_dma_flush() 333 (common->sfdl_slot - 1)); in sn_dma_flush() 337 *common->sfdl_flush_addr = 0; in sn_dma_flush() 340 *(volatile u32 *)(common->sfdl_force_int_addr) = 1; in sn_dma_flush() [all …]
|
D | pcibr_provider.c | 120 struct sn_flush_device_common *common; in pcibr_bus_fixup() local 171 common = sn_flush_device_kernel->common; in pcibr_bus_fixup() 172 if (common->sfdl_slot == -1) in pcibr_bus_fixup() 174 if ((common->sfdl_persistent_segment == in pcibr_bus_fixup() 176 (common->sfdl_persistent_busnum == in pcibr_bus_fixup() 178 common->sfdl_pcibus_info = in pcibr_bus_fixup()
|
/linux-4.4.14/net/caif/ |
D | caif_usb.c | 127 struct caif_dev_common common; in cfusbl_device_notify() local 157 memset(&common, 0, sizeof(common)); in cfusbl_device_notify() 158 common.use_frag = false; in cfusbl_device_notify() 159 common.use_fcs = false; in cfusbl_device_notify() 160 common.use_stx = false; in cfusbl_device_notify() 161 common.link_select = CAIF_LINK_HIGH_BANDW; in cfusbl_device_notify() 162 common.flowctrl = NULL; in cfusbl_device_notify() 173 caif_enroll_dev(dev, &common, link_support, CFUSB_MAX_HEADLEN, in cfusbl_device_notify()
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qede/ |
D | qede_ethtool.c | 194 edev->ops->common->get_link(edev->cdev, ¤t_link); in qede_get_settings() 220 if (edev->dev_info.common.is_mf) { in qede_set_settings() 228 edev->ops->common->get_link(edev->cdev, ¤t_link); in qede_set_settings() 265 edev->ops->common->set_link(edev->cdev, ¶ms); in qede_set_settings() 280 edev->dev_info.common.fw_major, in qede_get_drvinfo() 281 edev->dev_info.common.fw_minor, in qede_get_drvinfo() 282 edev->dev_info.common.fw_rev, in qede_get_drvinfo() 283 edev->dev_info.common.fw_eng); in qede_get_drvinfo() 286 (edev->dev_info.common.mfw_rev >> 24) & 0xFF, in qede_get_drvinfo() 287 (edev->dev_info.common.mfw_rev >> 16) & 0xFF, in qede_get_drvinfo() [all …]
|
D | qede_main.c | 127 if (!edev->ops || !edev->ops->common) in qede_netdev_event() 129 edev->ops->common->set_id(edev->cdev, edev->ndev->name, in qede_netdev_event() 1234 ndev->mem_start = edev->dev_info.common.pci_mem_start; in qede_init_ndev() 1236 ndev->mem_end = edev->dev_info.common.pci_mem_end; in qede_init_ndev() 1237 ndev->irq = edev->dev_info.common.pci_irq; in qede_init_ndev() 1259 ether_addr_copy(edev->ndev->dev_addr, edev->dev_info.common.hw_mac); in qede_init_ndev() 1367 qed_ops->common->update_pf_params(cdev, &pf_params); in qede_update_pf_params() 1386 cdev = qed_ops->common->probe(pdev, QED_PROTOCOL_ETH, in __qede_probe() 1403 rc = qed_ops->common->slowpath_start(cdev, ¶ms); in __qede_probe() 1429 edev->ops->common->set_id(cdev, edev->ndev->name, DRV_MODULE_VERSION); in __qede_probe() [all …]
|
/linux-4.4.14/arch/mips/sibyte/ |
D | Makefile | 5 obj-$(CONFIG_SIBYTE_BCM112X) += common/ 7 obj-$(CONFIG_SIBYTE_SB1250) += common/ 9 obj-$(CONFIG_SIBYTE_BCM1x55) += common/ 11 obj-$(CONFIG_SIBYTE_BCM1x80) += common/
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | pwm-clock.txt | 3 This binding uses the common clock binding[1] and the common PWM binding[2]. 10 - #clock-cells : from common clock binding; shall be set to 0. 11 - pwms : from common PWM binding; this determines the clock frequency 15 - clock-output-names : From common clock binding.
|
D | fixed-factor-clock.txt | 3 This binding uses the common clock binding[1]. 9 - #clock-cells : from common clock binding; shall be set to 0. 15 - clock-output-names : From common clock binding.
|
D | keystone-pll.txt | 9 This binding uses the common clock binding[1]. 14 - #clock-cells : from common clock binding; shall be set to 0. 43 - #clock-cells : from common clock binding; shall be set to 0. 51 - clock-output-names : From common clock binding. 65 - #clock-cells : from common clock binding; shall be set to 0. 73 - clock-output-names : From common clock binding.
|
D | silabs,si514.txt | 4 This binding uses the common clock binding[1]. Details about the device can be 14 - #clock-cells: From common clock bindings: Shall be 0. 17 - clock-output-names: From common clock bindings. Recommended to be "si514".
|
D | fixed-clock.txt | 3 This binding uses the common clock binding[1]. 9 - #clock-cells : from common clock binding; shall be set to 0. 15 - clock-output-names : From common clock binding.
|
D | axi-clkgen.txt | 3 This binding uses the common clock binding[1]. 9 - #clock-cells : from common clock binding; Should always be set to 0. 14 - clock-output-names : From common clock binding.
|
D | silabs,si570.txt | 5 This binding uses the common clock binding[1]. Details about the devices can be 18 - #clock-cells: From common clock bindings: Shall be 0. 27 - clock-output-names: From common clock bindings. Recommended to be "si570". 30 runtime through the common clock framework.
|
D | keystone-gate.txt | 5 This binding uses the common clock binding[1]. 11 - #clock-cells : from common clock binding; shall be set to 0. 18 - clock-output-names : From common clock binding to override the
|
D | at91-clock.txt | 3 This binding uses the common clock binding[1]. 101 - #clock-cells : from common clock binding; shall be set to 0. 115 - #clock-cells : from common clock binding; shall be set to 0. 130 - #clock-cells : from common clock binding; shall be set to 0. 191 - #clock-cells : from common clock binding; shall be set to 0. 212 - #clock-cells : from common clock binding; shall be set to 0. 227 - #clock-cells : from common clock binding; shall be set to 0. 255 * #clock-cells : from common clock binding; shall be set to 0. 286 - #clock-cells : from common clock binding; shall be set to 0. 327 - #clock-cells : from common clock binding; shall be set to 0. [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | sp810.txt | 14 - clock-names: from the common clock bindings, for more details see 18 - clocks: from the common clock bindings, phandle and clock 21 - #clock-cells: from the common clock bindings; 24 - clock-output-names: from the common clock bindings; 27 - assigned-clocks: from the common clock binding; 31 - assigned-clock-parents: from the common clock binding;
|
D | primecell.txt | 16 - clocks : From common clock binding. First clock is phandle to clock for apb 18 - clock-names : From common clock binding. Shall be "apb_pclk" for first clock. 19 - dmas : From common DMA binding. If present, refers to one or more dma channels. 20 - dma-names : From common DMA binding, needs to match the 'dmas' property.
|
/linux-4.4.14/drivers/dma/ |
D | qcom_bam_dma.c | 375 static inline struct bam_chan *to_bam_chan(struct dma_chan *common) in to_bam_chan() argument 377 return container_of(common, struct bam_chan, vc.chan); in to_bam_chan() 383 struct dma_device common; member 1004 struct bam_device, common); in bam_dma_xlate() 1076 vchan_init(&bchan->vc, &bdev->common); in bam_channel_init() 1150 INIT_LIST_HEAD(&bdev->common.channels); in bam_dma_probe() 1161 bdev->common.dev = bdev->dev; in bam_dma_probe() 1162 bdev->common.dev->dma_parms = &bdev->dma_parms; in bam_dma_probe() 1163 ret = dma_set_max_seg_size(bdev->common.dev, BAM_MAX_DATA_SIZE); in bam_dma_probe() 1172 dma_cap_zero(bdev->common.cap_mask); in bam_dma_probe() [all …]
|
D | iop-adma.c | 37 #define to_iop_adma_chan(chan) container_of(chan, struct iop_adma_chan, common) 39 container_of(dev, struct iop_adma_device, common) 104 dev_dbg(iop_chan->device->common.dev, in iop_adma_clean_slot() 122 dev_dbg(iop_chan->device->common.dev, "%s\n", __func__); in __iop_adma_slot_cleanup() 238 iop_chan->common.completed_cookie = cookie; in __iop_adma_slot_cleanup() 317 dev_dbg(iop_chan->device->common.dev, in iop_adma_alloc_slots() 361 dev_dbg(iop_chan->device->common.dev, "pending: %d\n", in iop_adma_check_threshold() 410 dev_dbg(iop_chan->device->common.dev, "%s cookie: %d slot: %d\n", in iop_adma_tx_submit() 476 dev_dbg(iop_chan->device->common.dev, in iop_adma_alloc_chan_resources() 483 iop_chan->device->common.cap_mask)) in iop_adma_alloc_chan_resources() [all …]
|
D | fsldma.c | 473 dma_async_tx_descriptor_init(&desc->async_tx, &chan->common); in fsl_dma_alloc_descriptor() 683 chan->common.completed_cookie = cookie; in fsldma_cleanup_descriptors() 1304 chan->common.device = &fdev->common; in fsl_dma_chan_probe() 1305 dma_cookie_init(&chan->common); in fsl_dma_chan_probe() 1311 list_add_tail(&chan->common.device_node, &fdev->common.channels); in fsl_dma_chan_probe() 1329 list_del(&chan->common.device_node); in fsl_dma_chan_remove() 1348 INIT_LIST_HEAD(&fdev->common.channels); in fsldma_of_probe() 1361 dma_cap_set(DMA_MEMCPY, fdev->common.cap_mask); in fsldma_of_probe() 1362 dma_cap_set(DMA_SG, fdev->common.cap_mask); in fsldma_of_probe() 1363 dma_cap_set(DMA_SLAVE, fdev->common.cap_mask); in fsldma_of_probe() [all …]
|
/linux-4.4.14/scripts/ |
D | bloat-o-meter | 34 delta, common = [], {} variable 38 common[a] = 1 41 if name not in common: 47 if name not in common: 52 for name in common:
|
D | stackdelta | 51 my @common = sort grep {exists $new->{$_}} keys %$old; 52 for (@common) {
|
/linux-4.4.14/drivers/dma/xilinx/ |
D | xilinx_vdma.c | 219 struct dma_chan common; member 246 struct dma_device common; member 254 container_of(chan, struct xilinx_vdma_chan, common) 953 dma_async_tx_descriptor_init(&desc->async_tx, &chan->common); in xilinx_vdma_dma_prep_interleaved() 1101 list_del(&chan->common.device_node); in xilinx_vdma_chan_remove() 1152 xdev->common.copy_align = fls(width - 1); in xilinx_vdma_chan_probe() 1197 chan->common.device = &xdev->common; in xilinx_vdma_chan_probe() 1199 list_add_tail(&chan->common.device_node, &xdev->common.channels); in xilinx_vdma_chan_probe() 1228 return dma_get_slave_channel(&xdev->chan[chan_id]->common); in of_dma_xilinx_xlate() 1274 xdev->common.dev = &pdev->dev; in xilinx_vdma_probe() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | ak4642.txt | 12 - #clock-cells : common clock binding; shall be set to 0 13 - clocks : common clock binding; MCKI clock 14 - clock-frequency : common clock binding; frequency of MCKO 15 - clock-output-names : common clock binding; MCKO clock name
|
/linux-4.4.14/drivers/net/wireless/ath/ath5k/ |
D | pcu.c | 372 struct ath_common *common = ath5k_hw_common(ah); in ath5k_hw_set_lladdr() local 377 memcpy(common->macaddr, mac, ETH_ALEN); in ath5k_hw_set_lladdr() 400 struct ath_common *common = ath5k_hw_common(ah); in ath5k_hw_set_bssid() local 407 ath_hw_setbssidmask(common); in ath5k_hw_set_bssid() 413 get_unaligned_le32(common->curbssid), in ath5k_hw_set_bssid() 416 get_unaligned_le16(common->curbssid + 4) | in ath5k_hw_set_bssid() 417 ((common->curaid & 0x3fff) << AR5K_BSS_ID1_AID_S), in ath5k_hw_set_bssid() 420 if (common->curaid == 0) { in ath5k_hw_set_bssid() 449 struct ath_common *common = ath5k_hw_common(ah); in ath5k_hw_set_bssid_mask() local 453 memcpy(common->bssidmask, mask, ETH_ALEN); in ath5k_hw_set_bssid_mask() [all …]
|
D | mac80211-ops.c | 257 struct ath_common *common = ath5k_hw_common(ah); in ath5k_bss_info_changed() local 263 memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN); in ath5k_bss_info_changed() 264 common->curaid = 0; in ath5k_bss_info_changed() 295 bss_conf->aid, common->curbssid); in ath5k_bss_info_changed() 296 common->curaid = bss_conf->aid; in ath5k_bss_info_changed() 478 struct ath_common *common = ath5k_hw_common(ah); in ath5k_set_key() local 501 if (common->crypt_caps & ATH_CRYPT_CAP_CIPHER_AESCCM) in ath5k_set_key() 513 ret = ath_key_config(common, vif, sta, key); in ath5k_set_key() 526 ath_key_delete(common, key); in ath5k_set_key() 654 struct ath_common *common = ath5k_hw_common(ah); in ath5k_get_survey() local [all …]
|
D | base.c | 522 struct ath_common *common = ath5k_hw_common(ah); in ath5k_update_bssid_mask_and_opmode() local 530 iter_data.hw_macaddr = common->macaddr; in ath5k_update_bssid_mask_and_opmode() 599 struct ath_common *common = ath5k_hw_common(ah); in ath5k_rx_skb_alloc() local 606 skb = ath_rxbuf_alloc(common, in ath5k_rx_skb_alloc() 607 common->rx_bufsize, in ath5k_rx_skb_alloc() 612 common->rx_bufsize); in ath5k_rx_skb_alloc() 617 skb->data, common->rx_bufsize, in ath5k_rx_skb_alloc() 660 ret = ath5k_hw_setup_rx_desc(ah, ds, ah->common.rx_bufsize, 0); in ath5k_rxbuf_setup() 935 struct ath_common *common = ath5k_hw_common(ah); in ath5k_rxbuf_free_skb() local 940 dma_unmap_single(ah->dev, bf->skbaddr, common->rx_bufsize, in ath5k_rxbuf_free_skb() [all …]
|
/linux-4.4.14/drivers/media/usb/tm6000/ |
D | tm6000-stds.c | 38 struct tm6000_reg_settings *common; member 181 { .id = V4L2_STD_PAL_M, .common = composite_pal_m, }, 182 { .id = V4L2_STD_PAL_Nc, .common = composite_pal_nc, }, 183 { .id = V4L2_STD_PAL, .common = composite_pal, }, 184 { .id = V4L2_STD_SECAM, .common = composite_secam, }, 185 { .id = V4L2_STD_NTSC, .common = composite_ntsc, }, 329 { .id = V4L2_STD_PAL_M, .common = svideo_pal_m, }, 330 { .id = V4L2_STD_PAL_Nc, .common = svideo_pal_nc, }, 331 { .id = V4L2_STD_PAL, .common = svideo_pal, }, 332 { .id = V4L2_STD_SECAM, .common = svideo_secam, }, [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/st/ |
D | st,clkgen-prediv.txt | 3 This binding uses the common clock binding[1]. 15 - #clock-cells : From common clock binding; shall be set to 0. 17 - clocks : From common clock binding 19 - clock-output-names : From common clock binding.
|
D | st,clkgen-divmux.txt | 3 This binding uses the common clock binding[1]. 19 - #clock-cells : From common clock binding; shall be set to 1. 21 - clocks : From common clock binding 23 - clock-output-names : From common clock binding.
|
D | st,quadfs.txt | 8 This binding uses the common clock binding[1]. 22 - #clock-cells : from common clock binding; shall be set to 1. 26 - clocks : from common clock binding 28 - clock-output-names : From common clock binding. The block has 4
|
D | st,clkgen-pll.txt | 3 This binding uses the common clock binding[1]. 31 - #clock-cells : From common clock binding; shall be set to 1. 33 - clocks : From common clock binding 35 - clock-output-names : From common clock binding.
|
D | st,clkgen-vcc.txt | 9 This binding uses the common clock binding[1]. 19 - #clock-cells : from common clock binding; shall be set to 1. 23 - clocks : from common clock binding 25 - clock-output-names : From common clock binding. The block has 16
|
D | st,clkgen-mux.txt | 6 This binding uses the common clock binding[1]. 22 - #clock-cells : from common clock binding; shall be set to 0. 26 - clocks : from common clock binding
|
/linux-4.4.14/arch/mips/kvm/ |
D | Makefile | 4 common-objs-y = $(addprefix ../../../virt/kvm/, kvm_main.o coalesced_mmio.o) 8 common-objs-$(CONFIG_CPU_HAS_MSA) += msa.o 10 kvm-objs := $(common-objs-y) mips.o emulate.o locore.o \
|
/linux-4.4.14/include/linux/ |
D | nd.h | 58 struct nd_namespace_common common; member 84 struct nd_namespace_common common; member 95 return container_of(dev, struct nd_namespace_io, common.dev); in to_nd_namespace_io() 107 return container_of(dev, struct nd_namespace_blk, common.dev); in to_nd_namespace_blk()
|
/linux-4.4.14/drivers/dma/ppc4xx/ |
D | adma.h | 19 container_of(chan, struct ppc440spe_adma_chan, common) 21 container_of(dev, struct ppc440spe_adma_device, common) 73 struct dma_device common; member 97 struct dma_chan common; member
|
D | adma.c | 1535 dev_dbg(chan->device->common.dev, "\tfree slot %llx: %d stride: %d\n", in ppc440spe_adma_clean_slot() 1558 dev_dbg(chan->device->common.dev, "ppc440spe adma%d: %s\n", in __ppc440spe_adma_slot_cleanup() 1573 dev_dbg(chan->device->common.dev, "\tcookie: %d slot: %d " in __ppc440spe_adma_slot_cleanup() 1639 chan->common.completed_cookie = cookie; in __ppc440spe_adma_slot_cleanup() 1669 chan->common.completed_cookie = cookie; in __ppc440spe_adma_slot_cleanup() 1832 dev_dbg(ppc440spe_chan->device->common.dev, in ppc440spe_adma_alloc_chan_resources() 1898 dev_dbg(chan->device->common.dev, "ppc440spe adma%d: pending: %d\n", in ppc440spe_adma_check_threshold() 1950 dev_dbg(chan->device->common.dev, in ppc440spe_adma_tx_submit() 1970 dev_dbg(ppc440spe_chan->device->common.dev, in ppc440spe_adma_prep_dma_interrupt() 2009 dev_dbg(ppc440spe_chan->device->common.dev, in ppc440spe_adma_prep_dma_memcpy() [all …]
|
/linux-4.4.14/drivers/net/wireless/p54/ |
D | p54pci.c | 86 if (priv->common.fw_interface != FW_LM86) { in p54p_upload_firmware() 155 skb = dev_alloc_skb(priv->common.rx_mtu + 32); in p54p_refill_rx_ring() 161 priv->common.rx_mtu + 32, in p54p_refill_rx_ring() 173 desc->len = cpu_to_le16(priv->common.rx_mtu + 32); in p54p_refill_rx_ring() 213 if (unlikely(len > priv->common.rx_mtu)) { in p54p_check_rx_ring() 218 len = priv->common.rx_mtu; in p54p_check_rx_ring() 222 priv->common.rx_mtu + 32, PCI_DMA_FROMDEVICE); in p54p_check_rx_ring() 227 priv->common.rx_mtu + 32, PCI_DMA_FROMDEVICE); in p54p_check_rx_ring() 233 priv->common.rx_mtu + 32, PCI_DMA_FROMDEVICE); in p54p_check_rx_ring() 234 desc->len = cpu_to_le16(priv->common.rx_mtu + 32); in p54p_check_rx_ring() [all …]
|
D | p54usb.c | 157 skb_pull(skb, priv->common.tx_hdr_len); in p54u_rx_cb() 158 if (priv->common.fw_interface == FW_LM87) { in p54u_rx_cb() 164 skb = dev_alloc_skb(priv->common.rx_mtu + 32); in p54u_rx_cb() 177 skb_push(skb, priv->common.tx_hdr_len); in p54u_rx_cb() 178 if (priv->common.fw_interface == FW_LM87) { in p54u_rx_cb() 231 skb = __dev_alloc_skb(priv->common.rx_mtu + 32, GFP_KERNEL); in p54u_init_urbs() 245 priv->common.rx_mtu + 32, p54u_rx_cb, skb); in p54u_init_urbs() 869 struct ieee80211_hw *dev = priv->common.hw; in p54u_start_ops() 880 if (priv->common.fw_interface != p54u_fwlist[ret].intf) { in p54u_start_ops() 1034 priv->common.open = p54u_open; in p54u_probe() [all …]
|
/linux-4.4.14/drivers/media/usb/dvb-usb/ |
D | Makefile | 17 dvb-usb-dibusb-common-objs := dibusb-common.o 20 obj-$(CONFIG_DVB_USB_A800) += dvb-usb-dibusb-common.o dvb-usb-a800.o 23 obj-$(CONFIG_DVB_USB_DIBUSB_MB) += dvb-usb-dibusb-common.o dvb-usb-dibusb-mb.o 26 obj-$(CONFIG_DVB_USB_DIBUSB_MC) += dvb-usb-dibusb-common.o dvb-usb-dibusb-mc.o 29 obj-$(CONFIG_DVB_USB_NOVA_T_USB2) += dvb-usb-dibusb-common.o dvb-usb-nova-t-usb2.o 32 obj-$(CONFIG_DVB_USB_UMT_010) += dvb-usb-dibusb-common.o dvb-usb-umt-010.o
|
/linux-4.4.14/drivers/net/caif/ |
D | caif_serial.c | 66 struct caif_dev_common common; member 188 if (!ser->common.use_stx && !ser->tx_started) { in ldisc_receive() 271 ser->common.flowctrl != NULL) in handle_tx() 272 ser->common.flowctrl(ser->dev, ON); in handle_tx() 290 ser->common.flowctrl != NULL) in caif_xmit() 292 ser->common.flowctrl(ser->dev, OFF); in caif_xmit() 433 serdev->common.link_select = CAIF_LINK_LOW_LATENCY; in caifdev_setup() 434 serdev->common.use_frag = true; in caifdev_setup() 435 serdev->common.use_stx = ser_use_stx; in caifdev_setup() 436 serdev->common.use_fcs = ser_use_fcs; in caifdev_setup()
|
/linux-4.4.14/arch/powerpc/kvm/ |
D | Makefile | 10 common-objs-y = $(KVM)/kvm_main.o $(KVM)/coalesced_mmio.o \ 18 common-objs-y += powerpc.o emulate.o emulate_loadstore.o 25 $(common-objs-y) \ 36 $(common-objs-y) \ 103 $(common-objs-y) \
|
/linux-4.4.14/Documentation/s390/ |
D | 00-INDEX | 8 - s390 common device support (common I/O layer). 10 - common I/O layer command line parameters, procfs and debugfs entries
|
/linux-4.4.14/drivers/media/platform/exynos4-is/ |
D | Makefile | 4 exynos4-is-common-objs := common.o 17 obj-$(CONFIG_VIDEO_EXYNOS4_IS_COMMON) += exynos4-is-common.o
|
/linux-4.4.14/Documentation/devicetree/bindings/media/i2c/ |
D | adp1653.txt | 15 - max-microamp : see Documentation/devicetree/bindings/leds/common.txt 19 - flash-max-microamp : see Documentation/devicetree/bindings/leds/common.txt 20 - flash-timeout-us : see Documentation/devicetree/bindings/leds/common.txt
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | ipq806x-dwmac.txt | 12 - qcom,nss-common: should contain a phandle to a syscon device mapping the 13 nss-common registers. 27 qcom,nss-common = <&nss_common>;
|
/linux-4.4.14/arch/powerpc/math-emu/ |
D | Makefile | 1 math-emu-common-objs = math.o fre.o fsqrt.o fsqrts.o frsqrtes.o mtfsf.o mtfsfi.o 2 obj-$(CONFIG_MATH_EMULATION_HW_UNIMPLEMENTED) += $(math-emu-common-objs) 3 obj-$(CONFIG_MATH_EMULATION_FULL) += $(math-emu-common-objs) fabs.o fadd.o \
|
/linux-4.4.14/include/net/tc_act/ |
D | tc_csum.h | 8 struct tcf_common common; member 13 container_of(a->priv,struct tcf_csum,common)
|
D | tc_defact.h | 7 struct tcf_common common; member 12 container_of(a->priv, struct tcf_defact, common)
|
D | tc_pedit.h | 7 struct tcf_common common; member 13 container_of(a->priv, struct tcf_pedit, common)
|
D | tc_connmark.h | 7 struct tcf_common common; member 13 container_of(a->priv, struct tcf_connmark_info, common)
|
D | tc_ipt.h | 9 struct tcf_common common; member 15 container_of(a->priv, struct tcf_ipt, common)
|
D | tc_vlan.h | 19 struct tcf_common common; member 25 container_of(a->priv, struct tcf_vlan, common)
|
D | tc_mirred.h | 7 struct tcf_common common; member 15 container_of(a->priv, struct tcf_mirred, common)
|
D | tc_gact.h | 7 struct tcf_common common; member 16 container_of(a->priv, struct tcf_gact, common)
|
D | tc_skbedit.h | 25 struct tcf_common common; member 33 container_of(a->priv, struct tcf_skbedit, common)
|
D | tc_bpf.h | 17 struct tcf_common common; member 27 container_of(a->priv, struct tcf_bpf, common)
|
D | tc_nat.h | 8 struct tcf_common common; member 18 return container_of(a->priv, struct tcf_nat, common); in to_tcf_nat()
|
/linux-4.4.14/drivers/staging/comedi/drivers/ |
D | das1800.c | 210 int common; /* supports AREF_COMMON flag */ member 227 .common = 1, 238 .common = 1, 249 .common = 1, 260 .common = 1, 271 .common = 1, 282 .common = 1, 293 .common = 1, 304 .common = 1, 315 .common = 1, [all …]
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192c/ |
D | Makefile | 1 rtl8192c-common-objs := \ 7 obj-$(CONFIG_RTL8192C_COMMON) += rtl8192c-common.o
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723com/ |
D | Makefile | 1 rtl8723-common-objs := \ 7 obj-$(CONFIG_RTL8723_COMMON) += rtl8723-common.o
|
/linux-4.4.14/Documentation/devicetree/bindings/leds/ |
D | leds-aat1290.txt | 23 node - see Documentation/devicetree/bindings/leds/common.txt. 26 - led-max-microamp : see Documentation/devicetree/bindings/leds/common.txt 27 - flash-max-microamp : see Documentation/devicetree/bindings/leds/common.txt 30 - flash-max-timeout-us : see Documentation/devicetree/bindings/leds/common.txt 35 - label : see Documentation/devicetree/bindings/leds/common.txt
|
/linux-4.4.14/arch/arm/mach-orion5x/ |
D | Makefile | 1 obj-y += common.o pci.o irq.o mpp.o 9 obj-$(CONFIG_MACH_TS209) += ts209-setup.o tsx09-common.o 10 obj-$(CONFIG_MACH_TS409) += ts409-setup.o tsx09-common.o
|
/linux-4.4.14/drivers/iio/common/hid-sensors/ |
D | Makefile | 5 obj-$(CONFIG_HID_SENSOR_IIO_COMMON) += hid-sensor-iio-common.o 7 hid-sensor-iio-common-y := hid-sensor-attributes.o
|
/linux-4.4.14/net/sched/ |
D | sch_drr.c | 22 struct Qdisc_class_common common; member 50 return container_of(clc, struct drr_class, common); in drr_find_class() 113 cl->common.classid = classid; in drr_change_class() 132 qdisc_class_hash_insert(&q->clhash, &cl->common); in drr_change_class() 159 qdisc_class_hash_remove(&q->clhash, &cl->common); in drr_delete_class() 225 &pfifo_qdisc_ops, cl->common.classid); in drr_graft_class() 256 tcm->tcm_handle = cl->common.classid; in drr_dump_class() 300 hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) { in drr_walk() 458 hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) { in drr_reset_qdisc() 478 common.hnode) in drr_destroy_qdisc()
|
/linux-4.4.14/Documentation/ |
D | clk.txt | 4 This document endeavours to explain the common clk framework details, 11 The common clk framework is an interface to control the clock nodes 17 details of its counterpart. First is the common definition of struct 20 is a common implementation of the clk.h api, defined in 35 allows for easy navigation between the two discrete halves of the common 38 Part 2 - common data structures and api 40 Below is the common struct clk definition from 59 Platforms and devices utilizing the common struct clk use the struct 94 The strength of the common struct clk comes from its .ops and .hw pointers 109 notifier_count, is needed here. That is all handled by the common [all …]
|
/linux-4.4.14/drivers/media/radio/si470x/ |
D | Makefile | 5 radio-usb-si470x-objs := radio-si470x-usb.o radio-si470x-common.o 6 radio-i2c-si470x-objs := radio-si470x-i2c.o radio-si470x-common.o
|
/linux-4.4.14/drivers/media/platform/sti/c8sectpfe/ |
D | Makefile | 1 c8sectpfe-y += c8sectpfe-core.o c8sectpfe-common.o c8sectpfe-dvb.o \ 7 ccflags-y += -Idrivers/media/common
|
/linux-4.4.14/drivers/leds/ |
D | leds-powernv.c | 59 struct powernv_led_common *common; member 88 struct powernv_led_common *powernv_led_common = powernv_led->common; in powernv_led_set() 140 struct powernv_led_common *powernv_led_common = powernv_led->common; in powernv_led_get() 181 struct powernv_led_common *powernv_led_common = powernv_led->common; in powernv_brightness_set() 270 powernv_led->common = powernv_led_common; in powernv_led_classdev()
|
/linux-4.4.14/arch/s390/kvm/ |
D | Makefile | 10 common-objs = $(KVM)/kvm_main.o $(KVM)/eventfd.o $(KVM)/async_pf.o $(KVM)/irqchip.o 14 kvm-objs := $(common-objs) kvm-s390.o intercept.o interrupt.o priv.o sigp.o
|
/linux-4.4.14/arch/arm/probes/kprobes/ |
D | Makefile | 1 obj-$(CONFIG_KPROBES) += core.o actions-common.o checkers-common.o
|
/linux-4.4.14/drivers/clk/samsung/ |
D | Kconfig | 9 Build the s3c2410 clock driver based on the common clock framework. 16 Temporary symbol to build the dclk driver based on the common clock
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/ |
D | rx.c | 398 struct statistics_general_common *common, in iwlagn_accumulative_statistics() argument 414 ACCUM(common); in iwlagn_accumulative_statistics() 427 struct statistics_general_common *common, in iwlagn_accumulative_statistics() argument 447 struct statistics_general_common *common; in iwlagn_rx_statistics() local 464 common = &stats->general.common; in iwlagn_rx_statistics() 465 rx_non_phy = &stats->rx.general.common; in iwlagn_rx_statistics() 482 common = &stats->general.common; in iwlagn_rx_statistics() 497 change = common->temperature != priv->statistics.common.temperature || in iwlagn_rx_statistics() 501 iwlagn_accumulative_statistics(priv, common, rx_non_phy, rx_ofdm, in iwlagn_rx_statistics() 507 memcpy(&priv->statistics.common, common, sizeof(*common)); in iwlagn_rx_statistics()
|
/linux-4.4.14/include/linux/qed/ |
D | qed_eth_if.h | 18 struct qed_dev_info common; member 105 struct qed_common_cb_ops common; member 109 const struct qed_common_ops *common; member
|
/linux-4.4.14/drivers/irqchip/ |
D | Makefile | 23 obj-$(CONFIG_ARM_GIC) += irq-gic.o irq-gic-common.o 25 obj-$(CONFIG_ARM_GIC_V3) += irq-gic-v3.o irq-gic-common.o 29 obj-$(CONFIG_ATMEL_AIC_IRQ) += irq-atmel-aic-common.o irq-atmel-aic.o 30 obj-$(CONFIG_ATMEL_AIC5_IRQ) += irq-atmel-aic-common.o irq-atmel-aic5.o
|
/linux-4.4.14/drivers/clk/bcm/ |
D | Kconfig | 7 Enable common clock framework support for Broadcom SoCs 15 Enable common clock framework support for Broadcom SoCs
|
/linux-4.4.14/drivers/net/ethernet/ti/ |
D | Makefile | 5 obj-$(CONFIG_TI_CPSW) += cpsw-common.o 6 obj-$(CONFIG_TI_DAVINCI_EMAC) += cpsw-common.o
|