Searched refs:common (Results 1 - 25 of 519) sorted by relevance

1234567891011>>

/drivers/usb/common/
H A DMakefile2 # Makefile for the usb common parts.
5 obj-$(CONFIG_USB_COMMON) += usb-common.o
6 usb-common-y += common.o
7 usb-common-$(CONFIG_USB_LED_TRIG) += led.o
/drivers/net/wireless/ath/
H A Dhw.c23 #define REG_READ (common->ops->read)
24 #define REG_WRITE(_ah, _reg, _val) (common->ops->write)(_ah, _val, _reg)
29 * @common: the ath_common struct for the device.
46 * When you do this you are essentially computing the common bits of all your
80 * significant bit". This is because its the only bit common
82 * common bit is we can simply "&" the bssid_mask now with any BSSID we have
92 * common bit amongst the MAC and BSSIDs is 0, this frame has the 2nd LSB
118 void ath_hw_setbssidmask(struct ath_common *common) argument
120 void *ah = common->ah;
123 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common
142 ath_hw_cycle_counters_update(struct ath_common *common) argument
178 ath_hw_get_listen_time(struct ath_common *common) argument
[all...]
H A Dmain.c29 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common, argument
49 skb = __dev_alloc_skb(len + common->cachelsz - 1, gfp_mask);
51 off = ((unsigned long) skb->data) % common->cachelsz;
53 skb_reserve(skb, common->cachelsz - off);
63 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr) argument
66 !is_zero_ether_addr(common->curbssid) &&
67 ether_addr_equal_64bits(hdr->addr3, common->curbssid);
71 void ath_printk(const char *level, const struct ath_common* common, argument
82 if (common && common
[all...]
H A Dkey.c25 #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) argument
45 void *ah = common->ah;
47 if (entry >= common->keymax) {
48 ath_err(common, "keyrese
87 ath_hw_keysetmac(struct ath_common *common, u16 entry, const u8 *mac) argument
129 ath_hw_set_keycache_entry(struct ath_common *common, u16 entry, const struct ath_keyval *k, const u8 *mac) argument
339 ath_setkey_tkip(struct ath_common *common, u16 keyix, const u8 *key, struct ath_keyval *hk, const u8 *addr, bool authenticator) argument
386 ath_reserve_key_cache_slot_tkip(struct ath_common *common) argument
405 ath_reserve_key_cache_slot(struct ath_common *common, u32 cipher) argument
473 ath_key_config(struct ath_common *common, struct ieee80211_vif *vif, struct ieee80211_sta *sta, struct ieee80211_key_conf *key) argument
584 ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key) argument
[all...]
H A Dath.h181 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,
184 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr);
186 void ath_hw_setbssidmask(struct ath_common *common);
187 void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key);
188 int ath_key_config(struct ath_common *common,
192 bool ath_hw_keyreset(struct ath_common *common, u16 entry);
193 void ath_hw_cycle_counters_update(struct ath_common *common);
194 int32_t ath_hw_get_listen_time(struct ath_common *common);
197 void ath_printk(const char *level, const struct ath_common *common,
200 #define ath_emerg(common, fm
288 _ath_dbg(struct ath_common *common, enum ATH_DEBUG dbg_mask, const char *fmt, ...) argument
[all...]
/drivers/net/wireless/rtlwifi/rtl8192c/
H A DMakefile1 rtl8192c-common-objs := \
7 obj-$(CONFIG_RTL8192C_COMMON) += rtl8192c-common.o
/drivers/net/wireless/rtlwifi/rtl8723com/
H A DMakefile1 rtl8723-common-objs := \
7 obj-$(CONFIG_RTL8723_COMMON) += rtl8723-common.o
/drivers/net/wireless/rsi/
H A Drsi_91x_core.c23 * @common: Pointer to the driver private structure.
27 static u8 rsi_determine_min_weight_queue(struct rsi_common *common) argument
29 struct wmm_qinfo *tx_qinfo = common->tx_qinfo;
34 q_len = skb_queue_len(&common->tx_queue[ii]);
36 common->min_weight = tx_qinfo[ii].weight;
46 * @common: Pointer to the driver private structure.
50 static bool rsi_recalculate_weights(struct rsi_common *common) argument
52 struct wmm_qinfo *tx_qinfo = common->tx_qinfo;
58 q_len = skb_queue_len(&common->tx_queue[ii]);
63 ((tx_qinfo[ii].weight > common
89 rsi_get_num_pkts_dequeue(struct rsi_common *common, u8 q_num) argument
132 rsi_core_determine_hal_queue(struct rsi_common *common) argument
209 rsi_core_queue_pkt(struct rsi_common *common, struct sk_buff *skb) argument
231 rsi_core_dequeue_pkt(struct rsi_common *common, u8 q_num) argument
252 rsi_core_qos_processor(struct rsi_common *common) argument
321 rsi_core_xmit(struct rsi_common *common, struct sk_buff *skb) argument
[all...]
H A Drsi_91x_debugfs.c29 struct rsi_common *common = seq->private; local
30 struct rsi_hw *adapter = common->priv;
84 struct rsi_common *common = seq->private; local
86 common->driver_ver.major = 0;
87 common->driver_ver.minor = 1;
88 common->driver_ver.release_num = 0;
89 common->driver_ver.patch_num = 0;
91 common->driver_ver.major,
92 common->driver_ver.minor,
93 common
125 struct rsi_common *common = seq->private; local
285 struct rsi_common *common = adapter->priv; local
[all...]
H A Drsi_91x_main.c61 * @common: Pointer to the driver private structure.
68 static struct sk_buff *rsi_prepare_skb(struct rsi_common *common, argument
99 rx_params->channel = rsi_get_connected_channel(common->priv);
106 * @common: Pointer to the driver private structure.
111 int rsi_read_pkt(struct rsi_common *common, s32 rcv_pkt_len) argument
120 frame_desc = &common->rx_data_pkt[index];
130 skb = rsi_prepare_skb(common,
137 rsi_indicate_pkt_to_os(common, skb);
141 rsi_mgmt_pkt_recv(common, (frame_desc + offset));
163 * @common
167 rsi_tx_scheduler_thread(struct rsi_common *common) argument
193 struct rsi_common *common = NULL; local
244 struct rsi_common *common = adapter->priv; local
[all...]
H A Drsi_91x_usb_ops.c26 * @common: Pointer to the driver private structure.
33 static int rsi_copy_to_card(struct rsi_common *common, argument
38 struct rsi_hw *adapter = common->priv;
85 * @common: Pointer to the driver private structure.
89 void rsi_usb_rx_thread(struct rsi_common *common) argument
91 struct rsi_hw *adapter = common->priv;
101 mutex_lock(&common->tx_rxlock);
102 status = rsi_read_pkt(common, 0);
105 mutex_unlock(&common->tx_rxlock);
108 mutex_unlock(&common
132 rsi_load_ta_instructions(struct rsi_common *common) argument
171 rsi_usb_device_init(struct rsi_common *common) argument
[all...]
H A Drsi_91x_mac80211.c126 * @common: Pointer to the driver private structure.
131 bool rsi_is_cipher_wep(struct rsi_common *common) argument
133 if (((common->secinfo.gtk_cipher == WLAN_CIPHER_SUITE_WEP104) ||
134 (common->secinfo.gtk_cipher == WLAN_CIPHER_SUITE_WEP40)) &&
135 (!common->secinfo.ptk_cipher))
245 struct rsi_common *common = adapter->priv; local
247 rsi_core_xmit(common, skb);
261 struct rsi_common *common = adapter->priv; local
263 mutex_lock(&common->mutex);
264 common
279 struct rsi_common *common = adapter->priv; local
298 struct rsi_common *common = adapter->priv; local
332 struct rsi_common *common = adapter->priv; local
354 struct rsi_common *common = adapter->priv; local
409 struct rsi_common *common = adapter->priv; local
458 struct rsi_common *common = adapter->priv; local
516 struct rsi_common *common = adapter->priv; local
615 struct rsi_common *common = adapter->priv; local
680 struct rsi_common *common = adapter->priv; local
758 struct rsi_common *common = adapter->priv; local
780 struct rsi_common *common = adapter->priv; local
804 rsi_perform_cqm(struct rsi_common *common, u8 *bssid, s8 rssi) argument
839 rsi_fill_rx_status(struct ieee80211_hw *hw, struct sk_buff *skb, struct rsi_common *common, struct ieee80211_rx_status *rxs) argument
896 rsi_indicate_pkt_to_os(struct rsi_common *common, struct sk_buff *skb) argument
914 rsi_set_min_rate(struct ieee80211_hw *hw, struct ieee80211_sta *sta, struct rsi_common *common) argument
968 struct rsi_common *common = adapter->priv; local
1001 struct rsi_common *common = adapter->priv; local
1042 rsi_mac80211_attach(struct rsi_common *common) argument
[all...]
/drivers/acpi/acpica/
H A Dpstree.c85 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode);
104 arg = op->common.value.arg;
107 arg = arg->common.next;
140 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode);
146 op->common.aml_opcode));
161 if (op->common.value.arg) {
165 prev_arg = op->common.value.arg;
166 while (prev_arg->common.next) {
167 prev_arg = prev_arg->common.next;
169 prev_arg->common
[all...]
H A Dpsparse.c160 if (op->common.parent) {
161 prev = op->common.parent->common.value.arg;
174 acpi_ps_get_opcode_info(op->common.parent->common.
199 if ((op->common.parent->common.aml_opcode ==
201 || (op->common.parent->common.aml_opcode ==
203 || (op->common
[all...]
H A Ddsobject.c89 if (op->common.aml_opcode == AML_INT_NAMEPATH_OP) {
95 if (!op->common.node) {
97 op->common.value.string,
105 common.
114 ((op->common.parent->common.aml_opcode ==
116 || (op->common.parent->common.aml_opcode ==
135 ACPI_ERROR_NAMESPACE(op->common.value.
145 if ((op->common
[all...]
H A Ddsutils.c204 if ((!op->common.parent) ||
205 (op->common.parent->common.aml_opcode == AML_SCOPE_OP)) {
211 acpi_ps_get_opcode_name(op->common.
219 acpi_ps_get_opcode_info(op->common.parent->common.aml_opcode);
234 switch (op->common.parent->common.aml_opcode) {
247 if ((walk_state->control_state->common.state ==
275 if ((op->common
[all...]
H A Dnsobject.c175 while (last_obj_desc->common.next_object) {
176 last_obj_desc = last_obj_desc->common.next_object;
181 last_obj_desc->common.next_object = node->object;
212 if (!obj_desc || (obj_desc->common.type == ACPI_TYPE_LOCAL_DATA)) {
220 if (obj_desc->common.type == ACPI_TYPE_METHOD) {
232 node->object = obj_desc->common.next_object;
237 (node->object->common.type != ACPI_TYPE_LOCAL_DATA)) {
238 node->object = node->object->common.next_object;
245 if (obj_desc->common.next_object &&
246 ((obj_desc->common
[all...]
H A Ddsfield.c164 if (op->common.aml_opcode == AML_CREATE_FIELD_OP) {
207 arg->common.value.string, ACPI_TYPE_ANY,
211 ACPI_ERROR_NAMESPACE(arg->common.value.string, status);
221 op->common.node = node;
250 second_desc = obj_desc->common.next_object;
310 switch (arg->common.aml_opcode) {
314 + (u64) arg->common.value.size;
343 ((u8)((u32)(arg->common.value.integer & 0x07))));
348 (u8)((arg->common.value.integer >> 8) & 0xFF);
353 (u8)((arg->common
[all...]
/drivers/media/platform/davinci/
H A Dvpif_display.c72 struct common_obj *common; local
74 common = &ch->common[VPIF_VIDEO_INDEX];
76 vb2_set_plane_payload(vb, 0, common->fmt.fmt.pix.sizeimage);
80 vb->v4l2_buf.field = common->fmt.fmt.pix.field;
85 if (!ISALIGNED(addr + common->ytop_off) ||
86 !ISALIGNED(addr + common->ybtm_off) ||
87 !ISALIGNED(addr + common->ctop_off) ||
88 !ISALIGNED(addr + common->cbtm_off)) {
115 struct common_obj *common local
143 struct common_obj *common; local
164 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; local
249 struct common_obj *common; local
296 process_progressive_mode(struct common_obj *common) argument
316 process_interlaced_mode(int fid, struct common_obj *common) argument
358 struct common_obj *common; local
452 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; local
495 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; local
556 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; local
609 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; local
626 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; local
654 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; local
678 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; local
842 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; local
911 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX]; local
1134 struct common_obj *common; local
1368 struct common_obj *common; local
1394 struct common_obj *common; local
1426 struct common_obj *common; local
[all...]
/drivers/usb/gadget/function/
H A Df_mass_storage.c327 struct fsg_common *common; member in struct:fsg_dev
341 static inline int __fsg_is_set(struct fsg_common *common, argument
344 if (common->fsg)
346 ERROR(common, "common->fsg is NULL in %s at %u\n", func, line);
351 #define fsg_is_set(common) likely(__fsg_is_set(common, __func__, __LINE__))
360 static int exception_in_progress(struct fsg_common *common) argument
362 return common->state > FSG_STATE_IDLE;
366 static void set_bulk_out_req_length(struct fsg_common *common, argument
401 wakeup_thread(struct fsg_common *common) argument
410 raise_exception(struct fsg_common *common, enum fsg_state new_state) argument
433 ep0_queue(struct fsg_common *common) argument
454 struct fsg_common *common = ep->driver_data; local
474 struct fsg_common *common = ep->driver_data; local
587 start_in_transfer(struct fsg_common *common, struct fsg_buffhd *bh) argument
596 start_out_transfer(struct fsg_common *common, struct fsg_buffhd *bh) argument
605 sleep_thread(struct fsg_common *common, bool can_freeze) argument
631 do_read(struct fsg_common *common) argument
762 do_write(struct fsg_common *common) argument
952 do_synchronize_cache(struct fsg_common *common) argument
978 do_verify(struct fsg_common *common) argument
1080 do_inquiry(struct fsg_common *common, struct fsg_buffhd *bh) argument
1105 do_request_sense(struct fsg_common *common, struct fsg_buffhd *bh) argument
1158 do_read_capacity(struct fsg_common *common, struct fsg_buffhd *bh) argument
1177 do_read_header(struct fsg_common *common, struct fsg_buffhd *bh) argument
1199 do_read_toc(struct fsg_common *common, struct fsg_buffhd *bh) argument
1226 do_mode_sense(struct fsg_common *common, struct fsg_buffhd *bh) argument
1312 do_start_stop(struct fsg_common *common) argument
1362 do_prevent_allow(struct fsg_common *common) argument
1386 do_read_format_capacities(struct fsg_common *common, struct fsg_buffhd *bh) argument
1403 do_mode_select(struct fsg_common *common, struct fsg_buffhd *bh) argument
1461 throw_away_data(struct fsg_common *common) argument
1515 finish_reply(struct fsg_common *common) argument
1617 send_status(struct fsg_common *common) argument
1679 check_command(struct fsg_common *common, int cmnd_size, enum data_direction data_dir, unsigned int mask, int needs_medium, const char *name) argument
1808 check_command_size_in_blocks(struct fsg_common *common, int cmnd_size, enum data_direction data_dir, unsigned int mask, int needs_medium, const char *name) argument
1818 do_scsi_command(struct fsg_common *common) argument
2103 struct fsg_common *common = fsg->common; local
2170 get_next_command(struct fsg_common *common) argument
2211 alloc_request(struct fsg_common *common, struct usb_ep *ep, struct usb_request **preq) argument
2222 do_set_interface(struct fsg_common *common, struct fsg_dev *new_fsg) argument
2338 handle_exception(struct fsg_common *common) argument
2491 struct fsg_common *common = common_; local
2644 fsg_common_get(struct fsg_common *common) argument
2650 fsg_common_put(struct fsg_common *common) argument
2666 fsg_common_setup(struct fsg_common *common) argument
2686 fsg_common_set_sysfs(struct fsg_common *common, bool sysfs) argument
2704 fsg_common_set_num_buffers(struct fsg_common *common, unsigned int n) argument
2787 _fsg_common_remove_luns(struct fsg_common *common, int n) argument
2799 fsg_common_remove_luns(struct fsg_common *common) argument
2804 fsg_common_free_luns(struct fsg_common *common) argument
2812 fsg_common_set_nluns(struct fsg_common *common, int nluns) argument
2838 fsg_common_set_ops(struct fsg_common *common, const struct fsg_operations *ops) argument
2845 fsg_common_free_buffers(struct fsg_common *common) argument
2852 fsg_common_set_cdev(struct fsg_common *common, struct usb_composite_dev *cdev, bool can_stall) argument
2880 fsg_common_add_sysfs(struct fsg_common *common, struct fsg_lun *lun) argument
2916 fsg_common_create_lun(struct fsg_common *common, struct fsg_lun_config *cfg, unsigned int id, const char *name, const char **name_pfx) argument
3003 fsg_common_create_luns(struct fsg_common *common, struct fsg_config *cfg) argument
3025 fsg_common_set_inquiry_string(struct fsg_common *common, const char *vn, const char *pn) argument
3042 fsg_common_run_thread(struct fsg_common *common) argument
3063 struct fsg_common *common = container_of(ref, struct fsg_common, ref); local
3177 struct fsg_common *common = fsg->common; local
3605 struct fsg_common *common = opts->common; local
[all...]
/drivers/net/wireless/ath/ath9k/
H A Dlink.c70 struct ath_common *common = ath9k_hw_common(sc->sc_ah); local
79 ath_dbg(common, RESET,
96 struct ath_common *common = ath9k_hw_common(sc->sc_ah); local
101 ath_dbg(common, RESET, "PLL WAR, resetting the chip\n");
118 struct ath_common *common = ath9k_hw_common(sc->sc_ah); local
125 if (!test_bit(ATH_OP_BEACONS, &common->op_flags))
147 struct ath_common *common = ath9k_hw_common(ah); local
152 ath_dbg(common, CALIBRATE, "Failed to activate PAPRD\n");
164 ath_dbg(common, CALIBRATE, "Activating PAPRD\n");
173 struct ath_common *common local
216 struct ath_common *common = ath9k_hw_common(ah); local
304 struct ath_common *common = ath9k_hw_common(ah); local
414 struct ath_common *common = ath9k_hw_common(ah); local
433 struct ath_common *common = ath9k_hw_common(sc->sc_ah); local
442 struct ath_common *common = ath9k_hw_common(sc->sc_ah); local
499 struct ath_common *common = ath9k_hw_common(ah); local
[all...]
H A Dcommon-init.h17 int ath9k_cmn_init_channels_rates(struct ath_common *common);
/drivers/clk/ti/
H A DMakefile3 clk-common = dpll.o composite.o divider.o gate.o \
5 obj-$(CONFIG_SOC_AM33XX) += $(clk-common) clk-33xx.o
6 obj-$(CONFIG_ARCH_OMAP2) += $(clk-common) interface.o clk-2xxx.o
7 obj-$(CONFIG_ARCH_OMAP3) += $(clk-common) interface.o clk-3xxx.o
8 obj-$(CONFIG_ARCH_OMAP4) += $(clk-common) clk-44xx.o
9 obj-$(CONFIG_SOC_OMAP5) += $(clk-common) clk-54xx.o
10 obj-$(CONFIG_SOC_DRA7XX) += $(clk-common) clk-7xx.o \
12 obj-$(CONFIG_SOC_AM43XX) += $(clk-common) clk-43xx.o
/drivers/iio/common/hid-sensors/
H A DMakefile2 # Makefile for the Hid sensor common modules.
5 obj-$(CONFIG_HID_SENSOR_IIO_COMMON) += hid-sensor-iio-common.o
7 hid-sensor-iio-common-y := hid-sensor-attributes.o
/drivers/soc/tegra/
H A DMakefile3 obj-$(CONFIG_ARCH_TEGRA) += common.o

Completed in 3773 milliseconds

1234567891011>>