Searched defs:mci (Results 1 - 25 of 39) sorted by relevance

12

/drivers/edac/
H A Damd64_edac_dbg.c4 static ssize_t amd64_##reg##_show(struct mem_ctl_info *mci, char *data) \
6 struct amd64_pvt *pvt = mci->pvt_info; \
15 static ssize_t amd64_hole_show(struct mem_ctl_info *mci, char *data) argument
21 amd64_get_dram_hole_info(mci, &hole_base, &hole_offset, &hole_size);
H A Damd64_edac_inj.c3 static ssize_t amd64_inject_section_show(struct mem_ctl_info *mci, char *buf) argument
5 struct amd64_pvt *pvt = mci->pvt_info;
15 static ssize_t amd64_inject_section_store(struct mem_ctl_info *mci, argument
18 struct amd64_pvt *pvt = mci->pvt_info;
36 static ssize_t amd64_inject_word_show(struct mem_ctl_info *mci, char *buf) argument
38 struct amd64_pvt *pvt = mci->pvt_info;
48 static ssize_t amd64_inject_word_store(struct mem_ctl_info *mci, argument
51 struct amd64_pvt *pvt = mci->pvt_info;
69 static ssize_t amd64_inject_ecc_vector_show(struct mem_ctl_info *mci, char *buf) argument
71 struct amd64_pvt *pvt = mci
80 amd64_inject_ecc_vector_store(struct mem_ctl_info *mci, const char *data, size_t count) argument
106 amd64_inject_read_store(struct mem_ctl_info *mci, const char *data, size_t count) argument
139 amd64_inject_write_store(struct mem_ctl_info *mci, const char *data, size_t count) argument
[all...]
H A Dtile_edac.c58 static void tile_edac_check(struct mem_ctl_info *mci) argument
60 struct tile_edac_priv *priv = mci->pvt_info;
72 dev_dbg(mci->dev, "ECC CE err on node %d\n", priv->node);
74 edac_mc_handle_ce(mci, 0, 0, 0, 0, 0, mci->ctl_name);
79 * Initialize the 'csrows' table within the mci control structure with the
82 static int __devinit tile_edac_init_csrows(struct mem_ctl_info *mci) argument
84 struct csrow_info *csrow = &mci->csrows[0];
85 struct tile_edac_priv *priv = mci->pvt_info;
125 struct mem_ctl_info *mci; local
178 struct mem_ctl_info *mci = platform_get_drvdata(pdev); local
[all...]
H A Dcell_edac.c33 static void cell_edac_count_ce(struct mem_ctl_info *mci, int chan, u64 ar) argument
35 struct cell_edac_priv *priv = mci->pvt_info;
36 struct csrow_info *csrow = &mci->csrows[0];
39 dev_dbg(mci->dev, "ECC CE err on node %d, channel %d, ar = 0x%016llx\n",
51 edac_mc_handle_ce(mci, csrow->first_page + pfn, offset,
55 static void cell_edac_count_ue(struct mem_ctl_info *mci, int chan, u64 ar) argument
57 struct cell_edac_priv *priv = mci->pvt_info;
58 struct csrow_info *csrow = &mci->csrows[0];
61 dev_dbg(mci->dev, "ECC UE err on node %d, channel %d, ar = 0x%016llx\n",
72 edac_mc_handle_ue(mci, csro
75 cell_edac_check(struct mem_ctl_info *mci) argument
124 cell_edac_init_csrows(struct mem_ctl_info *mci) argument
159 struct mem_ctl_info *mci; local
218 struct mem_ctl_info *mci = edac_mc_del_mc(&pdev->dev); local
[all...]
H A Damd76x_edac.c28 #define amd76x_mc_printk(mci, level, fmt, arg...) \
29 edac_mc_chipset_printk(mci, level, "amd76x", fmt, ##arg)
98 * @mci: Memory controller
104 static void amd76x_get_error_info(struct mem_ctl_info *mci, argument
109 pdev = to_pci_dev(mci->dev);
124 * @mci: Memory controller
132 static int amd76x_process_error_info(struct mem_ctl_info *mci, argument
149 edac_mc_handle_ue(mci, mci->csrows[row].first_page, 0,
150 row, mci
177 amd76x_check(struct mem_ctl_info *mci) argument
185 amd76x_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev, enum edac_type edac_mode) argument
233 struct mem_ctl_info *mci = NULL; local
311 struct mem_ctl_info *mci; local
[all...]
H A Di82860_edac.c25 #define i82860_mc_printk(mci, level, fmt, arg...) \
26 edac_mc_chipset_printk(mci, level, "i82860", fmt, ##arg)
65 static void i82860_get_error_info(struct mem_ctl_info *mci, argument
70 pdev = to_pci_dev(mci->dev);
98 static int i82860_process_error_info(struct mem_ctl_info *mci, argument
111 edac_mc_handle_ce_no_info(mci, "UE overwrote CE");
116 row = edac_mc_find_csrow_by_page(mci, info->eap);
119 edac_mc_handle_ue(mci, info->eap, 0, row, "i82860 UE");
121 edac_mc_handle_ce(mci, info->eap, 0, info->derrsyn, row, 0,
127 static void i82860_check(struct mem_ctl_info *mci) argument
136 i82860_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev) argument
178 struct mem_ctl_info *mci; local
260 struct mem_ctl_info *mci; local
[all...]
H A Dmv64x60_edac.c594 static void mv64x60_mc_check(struct mem_ctl_info *mci) argument
596 struct mv64x60_mc_pdata *pdata = mci->pvt_info;
614 edac_mc_handle_ce(mci, err_addr >> PAGE_SHIFT,
616 mci->ctl_name);
618 edac_mc_handle_ue(mci, err_addr >> PAGE_SHIFT,
619 err_addr & PAGE_MASK, 0, mci->ctl_name);
627 struct mem_ctl_info *mci = dev_id; local
628 struct mv64x60_mc_pdata *pdata = mci->pvt_info;
636 mv64x60_mc_check(mci);
655 static void mv64x60_init_csrows(struct mem_ctl_info *mci, argument
695 struct mem_ctl_info *mci; local
817 struct mem_ctl_info *mci = platform_get_drvdata(pdev); local
[all...]
H A Dpasemi_edac.c75 static u32 pasemi_edac_get_error_info(struct mem_ctl_info *mci) argument
77 struct pci_dev *pdev = to_pci_dev(mci->dev);
96 static void pasemi_edac_process_error_info(struct mem_ctl_info *mci, u32 errsta) argument
98 struct pci_dev *pdev = to_pci_dev(mci->dev);
113 edac_mc_handle_ue(mci, mci->csrows[cs].first_page, 0,
114 cs, mci->ctl_name);
119 edac_mc_handle_ce(mci, mci->csrows[cs].first_page, 0,
120 0, cs, 0, mci
124 pasemi_edac_check(struct mem_ctl_info *mci) argument
133 pasemi_edac_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev, enum edac_type edac_mode) argument
191 struct mem_ctl_info *mci = NULL; local
262 struct mem_ctl_info *mci = edac_mc_del_mc(&pdev->dev); local
[all...]
H A Dr82600_edac.c31 #define r82600_mc_printk(mci, level, fmt, arg...) \
32 edac_mc_chipset_printk(mci, level, "r82600", fmt, ##arg)
138 static void r82600_get_error_info(struct mem_ctl_info *mci, argument
143 pdev = to_pci_dev(mci->dev);
159 static int r82600_process_error_info(struct mem_ctl_info *mci, argument
182 edac_mc_handle_ce(mci, page, 0, /* not avail */
184 edac_mc_find_csrow_by_page(mci, page),
185 0, mci->ctl_name);
193 edac_mc_handle_ue(mci, page, 0,
194 edac_mc_find_csrow_by_page(mci, pag
201 r82600_check(struct mem_ctl_info *mci) argument
215 r82600_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev, u8 dramcr) argument
266 struct mem_ctl_info *mci; local
363 struct mem_ctl_info *mci; local
[all...]
H A Dedac_mc.c61 debugf4("\tcsrow->mci = %p\n\n", csrow->mci);
64 static void edac_mc_dump_mci(struct mem_ctl_info *mci) argument
66 debugf3("\tmci = %p\n", mci);
67 debugf3("\tmci->mtype_cap = %lx\n", mci->mtype_cap);
68 debugf3("\tmci->edac_ctl_cap = %lx\n", mci->edac_ctl_cap);
69 debugf3("\tmci->edac_cap = %lx\n", mci->edac_cap);
70 debugf4("\tmci->edac_check = %p\n", mci->edac_check);
72 mci->nr_csrows, mci
157 struct mem_ctl_info *mci; local
235 edac_mc_free(struct mem_ctl_info *mci) argument
256 struct mem_ctl_info *mci; local
295 struct mem_ctl_info *mci = to_edac_mem_ctl_work(d_work); local
325 edac_mc_workq_setup(struct mem_ctl_info *mci, unsigned msec) argument
345 edac_mc_workq_teardown(struct mem_ctl_info *mci) argument
370 struct mem_ctl_info *mci; local
409 add_mc_to_global_list(struct mem_ctl_info *mci) argument
449 del_mc_from_global_list(struct mem_ctl_info *mci) argument
472 struct mem_ctl_info *mci; local
501 edac_mc_add_mc(struct mem_ctl_info *mci) argument
571 struct mem_ctl_info *mci; local
636 edac_mc_find_csrow_by_page(struct mem_ctl_info *mci, unsigned long page) argument
675 edac_mc_handle_ce(struct mem_ctl_info *mci, unsigned long page_frame_number, unsigned long offset_in_page, unsigned long syndrome, int row, int channel, const char *msg) argument
737 edac_mc_handle_ce_no_info(struct mem_ctl_info *mci, const char *msg) argument
748 edac_mc_handle_ue(struct mem_ctl_info *mci, unsigned long page_frame_number, unsigned long offset_in_page, int row, const char *msg) argument
801 edac_mc_handle_ue_no_info(struct mem_ctl_info *mci, const char *msg) argument
818 edac_mc_handle_fbd_ue(struct mem_ctl_info *mci, unsigned int csrow, unsigned int channela, unsigned int channelb, char *msg) argument
885 edac_mc_handle_fbd_ce(struct mem_ctl_info *mci, unsigned int csrow, unsigned int channel, char *msg) argument
[all...]
H A Di3000_edac.c192 static void i3000_get_error_info(struct mem_ctl_info *mci, argument
197 pdev = to_pci_dev(mci->dev);
232 static int i3000_process_error_info(struct mem_ctl_info *mci, argument
239 multi_chan = mci->csrows[0].nr_channels - 1;
248 edac_mc_handle_ce_no_info(mci, "UE overwrote CE");
256 row = edac_mc_find_csrow_by_page(mci, pfn);
259 edac_mc_handle_ue(mci, pfn, offset, row, "i3000 UE");
261 edac_mc_handle_ce(mci, pfn, offset, info->derrsyn, row,
267 static void i3000_check(struct mem_ctl_info *mci) argument
271 debugf1("MC%d: %s()\n", mci
308 struct mem_ctl_info *mci = NULL; local
459 struct mem_ctl_info *mci; local
[all...]
H A Di82443bxgx_edac.c122 static void i82443bxgx_edacmc_get_error_info(struct mem_ctl_info *mci, argument
127 pdev = to_pci_dev(mci->dev);
142 static int i82443bxgx_edacmc_process_error_info(struct mem_ctl_info *mci, argument
159 edac_mc_handle_ce(mci, page, pageoffset,
162 0, edac_mc_find_csrow_by_page(mci, page), 0,
163 mci->ctl_name);
169 edac_mc_handle_ue(mci, page, pageoffset,
170 edac_mc_find_csrow_by_page(mci, page),
171 mci->ctl_name);
177 static void i82443bxgx_edacmc_check(struct mem_ctl_info *mci) argument
186 i82443bxgx_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev, enum edac_type edac_mode, enum mem_type mtype) argument
234 struct mem_ctl_info *mci; local
368 struct mem_ctl_info *mci; local
[all...]
H A Di82875p_edac.c29 #define i82875p_mc_printk(mci, level, fmt, arg...) \
30 edac_mc_chipset_printk(mci, level, "i82875p", fmt, ##arg)
186 static void i82875p_get_error_info(struct mem_ctl_info *mci, argument
191 pdev = to_pci_dev(mci->dev);
223 static int i82875p_process_error_info(struct mem_ctl_info *mci, argument
229 multi_chan = mci->csrows[0].nr_channels - 1;
238 edac_mc_handle_ce_no_info(mci, "UE overwrote CE");
243 row = edac_mc_find_csrow_by_page(mci, info->eap);
246 edac_mc_handle_ue(mci, info->eap, 0, row, "i82875p UE");
248 edac_mc_handle_ce(mci, inf
255 i82875p_check(struct mem_ctl_info *mci) argument
340 i82875p_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev, void __iomem * ovrfl_window, u32 drc) argument
384 struct mem_ctl_info *mci; local
487 struct mem_ctl_info *mci; local
[all...]
H A De7xxx_edac.c38 #define e7xxx_mc_printk(mci, level, fmt, arg...) \
39 edac_mc_chipset_printk(mci, level, "e7xxx", fmt, ##arg)
180 static unsigned long ctl_page_to_phys(struct mem_ctl_info *mci, argument
184 struct e7xxx_pvt *pvt = (struct e7xxx_pvt *)mci->pvt_info;
201 static void process_ce(struct mem_ctl_info *mci, struct e7xxx_error_info *info) argument
216 row = edac_mc_find_csrow_by_page(mci, page);
219 edac_mc_handle_ce(mci, page, 0, syndrome, row, channel, "e7xxx CE");
222 static void process_ce_no_info(struct mem_ctl_info *mci) argument
225 edac_mc_handle_ce_no_info(mci, "e7xxx CE log register overflow");
228 static void process_ue(struct mem_ctl_info *mci, struc argument
242 process_ue_no_info(struct mem_ctl_info *mci) argument
248 e7xxx_get_error_info(struct mem_ctl_info *mci, struct e7xxx_error_info *info) argument
276 e7xxx_process_error_info(struct mem_ctl_info *mci, struct e7xxx_error_info *info, int handle_errors) argument
324 e7xxx_check(struct mem_ctl_info *mci) argument
346 e7xxx_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev, int dev_idx, u32 drc) argument
408 struct mem_ctl_info *mci = NULL; local
512 struct mem_ctl_info *mci; local
[all...]
H A Dedac_mc_sysfs.c342 struct mem_ctl_info *mci; local
348 mci = cs->mci;
350 kobject_put(&mci->edac_mci_kobj);
361 static int edac_create_csrow_object(struct mem_ctl_info *mci, argument
364 struct kobject *kobj_mci = &mci->edac_mci_kobj;
371 csrow->mci = mci; /* include container up link */
373 /* bump the mci instance's kobject's ref count */
374 kobj = kobject_get(&mci
415 mci_reset_counters_store(struct mem_ctl_info *mci, const char *data, size_t count) argument
448 mci_sdram_scrub_rate_store(struct mem_ctl_info *mci, const char *data, size_t count) argument
473 mci_sdram_scrub_rate_show(struct mem_ctl_info *mci, char *data) argument
490 mci_ue_count_show(struct mem_ctl_info *mci, char *data) argument
495 mci_ce_count_show(struct mem_ctl_info *mci, char *data) argument
500 mci_ce_noinfo_show(struct mem_ctl_info *mci, char *data) argument
505 mci_ue_noinfo_show(struct mem_ctl_info *mci, char *data) argument
510 mci_seconds_show(struct mem_ctl_info *mci, char *data) argument
515 mci_ctl_name_show(struct mem_ctl_info *mci, char *data) argument
520 mci_size_mb_show(struct mem_ctl_info *mci, char *data) argument
624 struct mem_ctl_info *mci; local
650 edac_mc_register_sysfs_main_kobj(struct mem_ctl_info *mci) argument
709 edac_mc_unregister_sysfs_main_kobj(struct mem_ctl_info *mci) argument
754 struct mem_ctl_info *mci; local
781 edac_create_mci_instance_attributes(struct mem_ctl_info *mci, const struct mcidev_sysfs_attribute *sysfs_attrib, struct kobject *kobj) argument
842 edac_remove_mci_instance_attributes(struct mem_ctl_info *mci, const struct mcidev_sysfs_attribute *sysfs_attrib, struct kobject *kobj, int count) argument
901 edac_create_sysfs_mci_device(struct mem_ctl_info *mci) argument
974 edac_remove_sysfs_mci_device(struct mem_ctl_info *mci) argument
[all...]
H A Di3200_edac.c157 static void i3200_clear_error_info(struct mem_ctl_info *mci) argument
161 pdev = to_pci_dev(mci->dev);
171 static void i3200_get_and_clear_error_info(struct mem_ctl_info *mci, argument
175 struct i3200_priv *priv = mci->pvt_info;
178 pdev = to_pci_dev(mci->dev);
207 i3200_clear_error_info(mci);
210 static void i3200_process_error_info(struct mem_ctl_info *mci, argument
220 edac_mc_handle_ce_no_info(mci, "UE overwrote CE");
227 edac_mc_handle_ue(mci, 0, 0,
231 edac_mc_handle_ce(mci,
239 i3200_check(struct mem_ctl_info *mci) argument
323 struct mem_ctl_info *mci = NULL; local
433 struct mem_ctl_info *mci; local
[all...]
H A Di82975x_edac.c25 #define i82975x_mc_printk(mci, level, fmt, arg...) \
26 edac_mc_chipset_printk(mci, level, "i82975x", fmt, ##arg)
238 static void i82975x_get_error_info(struct mem_ctl_info *mci, argument
243 pdev = to_pci_dev(mci->dev);
277 static int i82975x_process_error_info(struct mem_ctl_info *mci, argument
290 edac_mc_handle_ce_no_info(mci, "UE overwrote CE");
299 row = edac_mc_find_csrow_by_page(mci, page);
302 i82975x_mc_printk(mci, KERN_ERR, "error processing EAP:\n"
309 chan = (mci->csrows[row].nr_channels == 1) ? 0 : info->eap & 1;
312 (1 << mci
323 i82975x_check(struct mem_ctl_info *mci) argument
363 i82975x_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev, void __iomem *mch_window) argument
465 struct mem_ctl_info *mci; local
599 struct mem_ctl_info *mci; local
[all...]
H A Dmpc85xx_edac.c52 static ssize_t mpc85xx_mc_inject_data_hi_show(struct mem_ctl_info *mci, argument
55 struct mpc85xx_mc_pdata *pdata = mci->pvt_info;
61 static ssize_t mpc85xx_mc_inject_data_lo_show(struct mem_ctl_info *mci, argument
64 struct mpc85xx_mc_pdata *pdata = mci->pvt_info;
70 static ssize_t mpc85xx_mc_inject_ctrl_show(struct mem_ctl_info *mci, char *data) argument
72 struct mpc85xx_mc_pdata *pdata = mci->pvt_info;
77 static ssize_t mpc85xx_mc_inject_data_hi_store(struct mem_ctl_info *mci, argument
80 struct mpc85xx_mc_pdata *pdata = mci->pvt_info;
89 static ssize_t mpc85xx_mc_inject_data_lo_store(struct mem_ctl_info *mci, argument
92 struct mpc85xx_mc_pdata *pdata = mci
101 mpc85xx_mc_inject_ctrl_store(struct mem_ctl_info *mci, const char *data, size_t count) argument
142 mpc85xx_set_mc_sysfs_attributes(struct mem_ctl_info *mci) argument
774 mpc85xx_mc_check(struct mem_ctl_info *mci) argument
869 struct mem_ctl_info *mci = dev_id; local
882 mpc85xx_init_csrows(struct mem_ctl_info *mci) argument
959 struct mem_ctl_info *mci; local
1090 struct mem_ctl_info *mci = dev_get_drvdata(&op->dev); local
[all...]
H A Dppc4xx_edac.c129 #define ppc4xx_edac_mc_printk(level, mci, fmt, arg...) \
130 edac_mc_chipset_printk(mci, level, "PPC4xx", fmt, ##arg)
300 * @mci: A pointer to the EDAC memory controller instance associated
316 ppc4xx_edac_generate_bank_message(const struct mem_ctl_info *mci, argument
324 n = snprintf(buffer, size, "%s: Banks: ", mci->dev_name);
333 for (rows = 0, row = 0; row < mci->nr_csrows; row++) {
362 * @mci: A pointer to the EDAC memory controller instance associated
378 ppc4xx_edac_generate_checkbit_message(const struct mem_ctl_info *mci, argument
383 const struct ppc4xx_edac_pdata *pdata = mci->pvt_info;
420 * @mci
436 ppc4xx_edac_generate_lane_message(const struct mem_ctl_info *mci, const struct ppc4xx_ecc_status *status, char *buffer, size_t size) argument
501 ppc4xx_edac_generate_ecc_message(const struct mem_ctl_info *mci, const struct ppc4xx_ecc_status *status, char *buffer, size_t size) argument
557 ppc4xx_edac_generate_plb_message(const struct mem_ctl_info *mci, const struct ppc4xx_ecc_status *status, char *buffer, size_t size) argument
598 ppc4xx_edac_generate_message(const struct mem_ctl_info *mci, const struct ppc4xx_ecc_status *status, char *buffer, size_t size) argument
631 ppc4xx_ecc_dump_status(const struct mem_ctl_info *mci, const struct ppc4xx_ecc_status *status) argument
668 ppc4xx_ecc_get_status(const struct mem_ctl_info *mci, struct ppc4xx_ecc_status *status) argument
693 ppc4xx_ecc_clear_status(const struct mem_ctl_info *mci, const struct ppc4xx_ecc_status *status) argument
720 ppc4xx_edac_handle_ce(struct mem_ctl_info *mci, const struct ppc4xx_ecc_status *status) argument
745 ppc4xx_edac_handle_ue(struct mem_ctl_info *mci, const struct ppc4xx_ecc_status *status) argument
772 ppc4xx_edac_check(struct mem_ctl_info *mci) argument
811 struct mem_ctl_info *mci = dev_id; local
891 ppc4xx_edac_init_csrows(struct mem_ctl_info *mci, u32 mcopt1) argument
1012 ppc4xx_edac_mc_init(struct mem_ctl_info *mci, struct platform_device *op, const dcr_host_t *dcr_host, u32 mcopt1) argument
1106 ppc4xx_edac_register_irq(struct platform_device *op, struct mem_ctl_info *mci) argument
1238 struct mem_ctl_info *mci = NULL; local
1355 struct mem_ctl_info *mci = dev_get_drvdata(&op->dev); local
[all...]
H A Dx38_edac.c150 static void x38_clear_error_info(struct mem_ctl_info *mci) argument
154 pdev = to_pci_dev(mci->dev);
169 static void x38_get_and_clear_error_info(struct mem_ctl_info *mci, argument
173 void __iomem *window = mci->pvt_info;
175 pdev = to_pci_dev(mci->dev);
205 x38_clear_error_info(mci);
208 static void x38_process_error_info(struct mem_ctl_info *mci, argument
218 edac_mc_handle_ce_no_info(mci, "UE overwrote CE");
225 edac_mc_handle_ue(mci, 0, 0,
228 edac_mc_handle_ce(mci,
235 x38_check(struct mem_ctl_info *mci) argument
321 struct mem_ctl_info *mci = NULL; local
430 struct mem_ctl_info *mci; local
[all...]
/drivers/net/wireless/ath/ath9k/
H A Dar9003_mac.c179 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
310 raw_intr, rx_msg_intr, mci->raw_intr,
311 mci->rx_msg_intr);
313 mci->rx_msg_intr |= rx_msg_intr;
314 mci->raw_intr |= raw_intr;
318 mci->cont_status =
H A Dmci.c21 #include "mci.h"
26 ath_mci_find_profile(struct ath_mci_profile *mci, argument
31 list_for_each_entry(entry, &mci->info, list) {
39 struct ath_mci_profile *mci,
44 if ((mci->num_sco == ATH_MCI_MAX_SCO_PROFILE) &&
51 if (((NUM_PROF(mci) - mci->num_sco) == ATH_MCI_MAX_ACL_PROFILE) &&
58 entry = ath_mci_find_profile(mci, info);
68 INC_PROF(mci, info);
69 list_add_tail(&info->list, &mci
38 ath_mci_add_profile(struct ath_common *common, struct ath_mci_profile *mci, struct ath_mci_profile_info *info) argument
74 ath_mci_del_profile(struct ath_common *common, struct ath_mci_profile *mci, struct ath_mci_profile_info *info) argument
91 ath_mci_flush_profile(struct ath_mci_profile *mci) argument
105 struct ath_mci_profile *mci = &btcoex->mci; local
124 struct ath_mci_profile *mci = &btcoex->mci; local
240 struct ath_mci_profile *mci = &btcoex->mci; local
267 struct ath_mci_profile *mci = &btcoex->mci; local
417 struct ath_mci_coex *mci = &sc->mci_coex; local
454 struct ath_mci_coex *mci = &sc->mci_coex; local
468 struct ath_mci_coex *mci = &sc->mci_coex; local
[all...]
H A Dbtcoex.h89 struct ath9k_hw_mci mci; member in struct:ath_btcoex_hw
H A Dar9003_mci.c142 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
145 if (!mci->bt_version_known &&
146 (mci->bt_state != MCI_BT_SLEEP)) {
159 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
166 mci->wlan_ver_major;
168 mci->wlan_ver_minor;
175 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
192 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
229 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
259 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
420 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
436 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
451 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
473 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
551 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
715 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
745 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
783 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
881 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
931 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
1003 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
1037 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
1084 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
1218 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci; local
[all...]
/drivers/s390/cio/
H A Dcio.c962 struct mci *mci; local
965 mci = (struct mci *)&S390_lowcore.mcck_interruption_code;
966 if (!mci->cp)

Completed in 340 milliseconds

12