Home
last modified time | relevance | path

Searched refs:seq (Results 1 – 25 of 601) sorted by relevance

12345678910>>...25

/drivers/net/bonding/
Dbond_procfs.c11 static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos) in bond_info_seq_start() argument
14 struct bonding *bond = PDE_DATA(file_inode(seq->file)); in bond_info_seq_start()
31 static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos) in bond_info_seq_next() argument
33 struct bonding *bond = PDE_DATA(file_inode(seq->file)); in bond_info_seq_next()
52 static void bond_info_seq_stop(struct seq_file *seq, void *v) in bond_info_seq_stop() argument
58 static void bond_info_show_master(struct seq_file *seq) in bond_info_show_master() argument
60 struct bonding *bond = PDE_DATA(file_inode(seq->file)); in bond_info_show_master()
67 seq_printf(seq, "Bonding Mode: %s", in bond_info_show_master()
74 seq_printf(seq, " (fail_over_mac %s)", optval->string); in bond_info_show_master()
77 seq_printf(seq, "\n"); in bond_info_show_master()
[all …]
/drivers/net/wireless/st/cw1200/
Ddebug.c69 static void cw1200_queue_status_show(struct seq_file *seq, in cw1200_queue_status_show() argument
73 seq_printf(seq, "Queue %d:\n", q->queue_id); in cw1200_queue_status_show()
74 seq_printf(seq, " capacity: %zu\n", q->capacity); in cw1200_queue_status_show()
75 seq_printf(seq, " queued: %zu\n", q->num_queued); in cw1200_queue_status_show()
76 seq_printf(seq, " pending: %zu\n", q->num_pending); in cw1200_queue_status_show()
77 seq_printf(seq, " sent: %zu\n", q->num_sent); in cw1200_queue_status_show()
78 seq_printf(seq, " locked: %s\n", q->tx_locked_cnt ? "yes" : "no"); in cw1200_queue_status_show()
79 seq_printf(seq, " overfull: %s\n", q->overfull ? "yes" : "no"); in cw1200_queue_status_show()
80 seq_puts(seq, " link map: 0-> "); in cw1200_queue_status_show()
82 seq_printf(seq, "%.2d ", q->link_map_cache[i]); in cw1200_queue_status_show()
[all …]
/drivers/usb/dwc2/
Ddebugfs.c126 static int state_show(struct seq_file *seq, void *v) in state_show() argument
128 struct dwc2_hsotg *hsotg = seq->private; in state_show()
131 seq_printf(seq, "DCFG=0x%08x, DCTL=0x%08x, DSTS=0x%08x\n", in state_show()
136 seq_printf(seq, "DIEPMSK=0x%08x, DOEPMASK=0x%08x\n", in state_show()
139 seq_printf(seq, "GINTMSK=0x%08x, GINTSTS=0x%08x\n", in state_show()
143 seq_printf(seq, "DAINTMSK=0x%08x, DAINT=0x%08x\n", in state_show()
147 seq_printf(seq, "GNPTXSTS=0x%08x, GRXSTSR=%08x\n", in state_show()
151 seq_puts(seq, "\nEndpoint status:\n"); in state_show()
159 seq_printf(seq, "ep%d: DIEPCTL=0x%08x, DOEPCTL=0x%08x", in state_show()
165 seq_printf(seq, ", DIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x", in state_show()
[all …]
/drivers/net/wireless/rsi/
Drsi_91x_debugfs.c27 static int rsi_sdio_stats_read(struct seq_file *seq, void *data) in rsi_sdio_stats_read() argument
29 struct rsi_common *common = seq->private; in rsi_sdio_stats_read()
34 seq_printf(seq, "total_sdio_interrupts: %d\n", in rsi_sdio_stats_read()
36 seq_printf(seq, "sdio_msdu_pending_intr_count: %d\n", in rsi_sdio_stats_read()
38 seq_printf(seq, "sdio_buff_full_count : %d\n", in rsi_sdio_stats_read()
40 seq_printf(seq, "sdio_buf_semi_full_count %d\n", in rsi_sdio_stats_read()
42 seq_printf(seq, "sdio_unknown_intr_count: %d\n", in rsi_sdio_stats_read()
45 seq_printf(seq, "BUFFER FULL STATUS : %d\n", in rsi_sdio_stats_read()
47 seq_printf(seq, "SEMI BUFFER FULL STATUS : %d\n", in rsi_sdio_stats_read()
49 seq_printf(seq, "MGMT BUFFER FULL STATUS : %d\n", in rsi_sdio_stats_read()
[all …]
/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_debugfs.c61 static void *seq_tab_start(struct seq_file *seq, loff_t *pos) in seq_tab_start() argument
63 struct seq_tab *tb = seq->private; in seq_tab_start()
71 static void *seq_tab_next(struct seq_file *seq, void *v, loff_t *pos) in seq_tab_next() argument
73 v = seq_tab_get_idx(seq->private, *pos + 1); in seq_tab_next()
78 static void seq_tab_stop(struct seq_file *seq, void *v) in seq_tab_stop() argument
82 static int seq_tab_show(struct seq_file *seq, void *v) in seq_tab_show() argument
84 const struct seq_tab *tb = seq->private; in seq_tab_show()
86 return tb->show(seq, v, ((char *)v - tb->data) / tb->width); in seq_tab_show()
98 int (*show)(struct seq_file *seq, void *v, int i)) in seq_open_tab() argument
123 static int cim_la_show(struct seq_file *seq, void *v, int idx) in cim_la_show() argument
[all …]
/drivers/block/drbd/
Ddrbd_proc.c26 static void seq_printf_with_thousands_grouping(struct seq_file *seq, long v) in seq_printf_with_thousands_grouping() argument
31 seq_printf(seq, "%ld,", v / 1000000); in seq_printf_with_thousands_grouping()
33 seq_printf(seq, "%03ld,%03ld", v/1000, v % 1000); in seq_printf_with_thousands_grouping()
35 seq_printf(seq, "%ld,%03ld", v/1000, v % 1000); in seq_printf_with_thousands_grouping()
37 seq_printf(seq, "%ld", v); in seq_printf_with_thousands_grouping()
90 static void drbd_syncer_progress(struct drbd_device *device, struct seq_file *seq, in drbd_syncer_progress() argument
102 seq_puts(seq, "\t["); in drbd_syncer_progress()
104 seq_putc(seq, '='); in drbd_syncer_progress()
105 seq_putc(seq, '>'); in drbd_syncer_progress()
107 seq_putc(seq, '.'); in drbd_syncer_progress()
[all …]
/drivers/cpufreq/
Ds3c24xx-cpufreq-debugfs.c30 static void show_max(struct seq_file *seq, struct s3c_freq *f) in show_max() argument
32 seq_printf(seq, "MAX: F=%lu, H=%lu, P=%lu, A=%lu\n", in show_max()
36 static int board_show(struct seq_file *seq, void *p) in board_show() argument
43 seq_printf(seq, "no configuration registered\n"); in board_show()
49 seq_printf(seq, "no board definition set?\n"); in board_show()
53 seq_printf(seq, "SDRAM refresh %u ns\n", brd->refresh); in board_show()
54 seq_printf(seq, "auto_io=%u\n", brd->auto_io); in board_show()
55 seq_printf(seq, "need_io=%u\n", brd->need_io); in board_show()
57 show_max(seq, &brd->max); in board_show()
65 static int info_show(struct seq_file *seq, void *p) in info_show() argument
[all …]
/drivers/remoteproc/
Dremoteproc_debugfs.c275 static int rproc_rsc_table_show(struct seq_file *seq, void *p) in rproc_rsc_table_show() argument
278 struct rproc *rproc = seq->private; in rproc_rsc_table_show()
287 seq_puts(seq, "No resource table found\n"); in rproc_rsc_table_show()
299 seq_printf(seq, "Entry %d is of type %s\n", i, types[hdr->type]); in rproc_rsc_table_show()
300 seq_printf(seq, " Device Address 0x%x\n", c->da); in rproc_rsc_table_show()
301 seq_printf(seq, " Physical Address 0x%x\n", c->pa); in rproc_rsc_table_show()
302 seq_printf(seq, " Length 0x%x Bytes\n", c->len); in rproc_rsc_table_show()
303 seq_printf(seq, " Flags 0x%x\n", c->flags); in rproc_rsc_table_show()
304 seq_printf(seq, " Reserved (should be zero) [%d]\n", c->reserved); in rproc_rsc_table_show()
305 seq_printf(seq, " Name %s\n\n", c->name); in rproc_rsc_table_show()
[all …]
/drivers/gpu/drm/nouveau/nvkm/falcon/
Dqmgr.c29 struct nvkm_falcon_qmgr_seq *seq; in nvkm_falcon_qmgr_seq_acquire() local
32 mutex_lock(&qmgr->seq.mutex); in nvkm_falcon_qmgr_seq_acquire()
33 index = find_first_zero_bit(qmgr->seq.tbl, NVKM_FALCON_QMGR_SEQ_NUM); in nvkm_falcon_qmgr_seq_acquire()
36 mutex_unlock(&qmgr->seq.mutex); in nvkm_falcon_qmgr_seq_acquire()
40 set_bit(index, qmgr->seq.tbl); in nvkm_falcon_qmgr_seq_acquire()
41 mutex_unlock(&qmgr->seq.mutex); in nvkm_falcon_qmgr_seq_acquire()
43 seq = &qmgr->seq.id[index]; in nvkm_falcon_qmgr_seq_acquire()
44 seq->state = SEQ_STATE_PENDING; in nvkm_falcon_qmgr_seq_acquire()
45 return seq; in nvkm_falcon_qmgr_seq_acquire()
50 struct nvkm_falcon_qmgr_seq *seq) in nvkm_falcon_qmgr_seq_release() argument
[all …]
/drivers/scsi/aic94xx/
Daic94xx_hwi.c200 struct asd_seq_data *seq = &asd_ha->seq; in asd_init_scbs() local
204 asd_ha->seq.tc_index_bitmap_bits = asd_ha->hw_prof.max_scbs; in asd_init_scbs()
205 asd_ha->seq.tc_index_array = kcalloc(asd_ha->seq.tc_index_bitmap_bits, in asd_init_scbs()
208 if (!asd_ha->seq.tc_index_array) in asd_init_scbs()
211 bitmap_bytes = (asd_ha->seq.tc_index_bitmap_bits+7)/8; in asd_init_scbs()
213 asd_ha->seq.tc_index_bitmap = kzalloc(bitmap_bytes, GFP_KERNEL); in asd_init_scbs()
214 if (!asd_ha->seq.tc_index_bitmap) { in asd_init_scbs()
215 kfree(asd_ha->seq.tc_index_array); in asd_init_scbs()
216 asd_ha->seq.tc_index_array = NULL; in asd_init_scbs()
220 spin_lock_init(&seq->tc_index_lock); in asd_init_scbs()
[all …]
/drivers/gpu/drm/
Ddrm_trace.h16 TP_PROTO(int crtc, unsigned int seq, ktime_t time, bool high_prec),
17 TP_ARGS(crtc, seq, time, high_prec),
20 __field(unsigned int, seq)
26 __entry->seq = seq;
31 __entry->crtc, __entry->seq, __entry->time,
36 TP_PROTO(struct drm_file *file, int crtc, unsigned int seq),
37 TP_ARGS(file, crtc, seq),
41 __field(unsigned int, seq)
46 __entry->seq = seq;
49 __entry->seq)
[all …]
/drivers/gpu/drm/radeon/
Dradeon_fence.c67 static void radeon_fence_write(struct radeon_device *rdev, u32 seq, int ring) in radeon_fence_write() argument
72 *drv->cpu_addr = cpu_to_le32(seq); in radeon_fence_write()
75 WREG32(drv->scratch_reg, seq); in radeon_fence_write()
91 u32 seq = 0; in radeon_fence_read() local
95 seq = le32_to_cpu(*drv->cpu_addr); in radeon_fence_read()
97 seq = lower_32_bits(atomic64_read(&drv->last_seq)); in radeon_fence_read()
100 seq = RREG32(drv->scratch_reg); in radeon_fence_read()
102 return seq; in radeon_fence_read()
138 u64 seq; in radeon_fence_emit() local
146 (*fence)->seq = seq = ++rdev->fence_drv[ring].sync_seq[ring]; in radeon_fence_emit()
[all …]
/drivers/mtd/devices/
Dst_spi_fsm.c251 uint8_t seq[16]; member
519 static int stfsm_mx25_en_32bit_addr_seq(struct stfsm_seq *seq) in stfsm_mx25_en_32bit_addr_seq() argument
521 seq->seq_opc[0] = (SEQ_OPC_PADS_1 | in stfsm_mx25_en_32bit_addr_seq()
526 seq->seq[0] = STFSM_INST_CMD1; in stfsm_mx25_en_32bit_addr_seq()
527 seq->seq[1] = STFSM_INST_WAIT; in stfsm_mx25_en_32bit_addr_seq()
528 seq->seq[2] = STFSM_INST_STOP; in stfsm_mx25_en_32bit_addr_seq()
530 seq->seq_cfg = (SEQ_CFG_PADS_1 | in stfsm_mx25_en_32bit_addr_seq()
576 .seq = {
592 .seq = {
612 .seq = {
[all …]
/drivers/scsi/elx/efct/
Defct_unsol.c40 efct_dispatch_frame(struct efct *efct, struct efc_hw_sequence *seq) in efct_dispatch_frame() argument
46 hdr = seq->header->dma.virt; in efct_dispatch_frame()
61 efct_hw_sequence_free(&efct->hw, seq); in efct_dispatch_frame()
65 efct_dispatch_fcp_cmd(node, seq); in efct_dispatch_frame()
75 efct_node_recv_abts_frame(node, seq); in efct_dispatch_frame()
79 efct_hw_sequence_free(&efct->hw, seq); in efct_dispatch_frame()
84 efct_unsolicited_cb(void *arg, struct efc_hw_sequence *seq) in efct_unsolicited_cb() argument
89 if (!efct_dispatch_frame(efct, seq)) in efct_unsolicited_cb()
93 efc_dispatch_frame(efct->efcport, seq); in efct_unsolicited_cb()
138 efct_validate_fcp_cmd(struct efct *efct, struct efc_hw_sequence *seq) in efct_validate_fcp_cmd() argument
[all …]
/drivers/android/
Dbinder_alloc_selftest.c78 static void pr_err_size_seq(size_t *sizes, int *seq) in pr_err_size_seq() argument
88 pr_cont("[%d]", seq[i]); in pr_err_size_seq()
117 size_t *sizes, int *seq) in binder_selftest_alloc_buf() argument
126 pr_err_size_seq(sizes, seq); in binder_selftest_alloc_buf()
134 size_t *sizes, int *seq, size_t end) in binder_selftest_free_buf() argument
139 binder_alloc_free_buf(alloc, buffers[seq[i]]); in binder_selftest_free_buf()
148 pr_err_size_seq(sizes, seq); in binder_selftest_free_buf()
177 size_t *sizes, int *seq, size_t end) in binder_selftest_alloc_free() argument
181 binder_selftest_alloc_buf(alloc, buffers, sizes, seq); in binder_selftest_alloc_free()
182 binder_selftest_free_buf(alloc, buffers, sizes, seq, end); in binder_selftest_alloc_free()
[all …]
/drivers/target/iscsi/
Discsi_target_seq_pdu_list.c24 struct iscsi_seq *seq; in iscsit_dump_seq_list() local
30 seq = &cmd->seq_list[i]; in iscsit_dump_seq_list()
33 " seq_no: %d\n", i, seq->pdu_start, seq->pdu_count, in iscsit_dump_seq_list()
34 seq->offset, seq->xfer_len, seq->seq_send_order, in iscsit_dump_seq_list()
35 seq->seq_no); in iscsit_dump_seq_list()
294 struct iscsi_seq *seq = cmd->seq_list; in iscsit_do_build_pdu_and_seq_lists() local
320 seq[seq_no].pdu_start = i; in iscsit_do_build_pdu_and_seq_lists()
321 seq[seq_no].seq_no = seq_no; in iscsit_do_build_pdu_and_seq_lists()
322 seq[seq_no].offset = offset; in iscsit_do_build_pdu_and_seq_lists()
323 seq[seq_no].orig_offset = offset; in iscsit_do_build_pdu_and_seq_lists()
[all …]
Discsi_target_erl1.c224 struct iscsi_seq *first_seq = NULL, *seq = NULL; in iscsit_create_recovery_datain_values_datasequenceinorder_no() local
241 seq = &cmd->seq_list[i]; in iscsit_create_recovery_datain_values_datasequenceinorder_no()
243 if (!seq->seq_send_order) in iscsit_create_recovery_datain_values_datasequenceinorder_no()
244 first_seq = seq; in iscsit_create_recovery_datain_values_datasequenceinorder_no()
250 if (!seq->sent) { in iscsit_create_recovery_datain_values_datasequenceinorder_no()
252 " 0x%08x\n\n", seq->first_datasn, in iscsit_create_recovery_datain_values_datasequenceinorder_no()
253 seq->last_datasn); in iscsit_create_recovery_datain_values_datasequenceinorder_no()
262 if ((seq->first_datasn < begrun) && in iscsit_create_recovery_datain_values_datasequenceinorder_no()
263 (seq->last_datasn < begrun)) { in iscsit_create_recovery_datain_values_datasequenceinorder_no()
265 " 0x%08x\n", seq->first_datasn, in iscsit_create_recovery_datain_values_datasequenceinorder_no()
[all …]
Discsi_target_erl0.c92 struct iscsi_seq *seq; in iscsit_dataout_within_command_recovery_check() local
94 seq = iscsit_get_seq_holder(cmd, be32_to_cpu(hdr->offset), in iscsit_dataout_within_command_recovery_check()
96 if (!seq) in iscsit_dataout_within_command_recovery_check()
101 cmd->seq_ptr = seq; in iscsit_dataout_within_command_recovery_check()
104 if (seq->status == in iscsit_dataout_within_command_recovery_check()
106 (seq->offset != be32_to_cpu(hdr->offset) || in iscsit_dataout_within_command_recovery_check()
107 seq->data_sn != be32_to_cpu(hdr->datasn))) in iscsit_dataout_within_command_recovery_check()
110 if (seq->status == in iscsit_dataout_within_command_recovery_check()
112 seq->data_sn != be32_to_cpu(hdr->datasn)) in iscsit_dataout_within_command_recovery_check()
116 if (seq->status == DATAOUT_SEQUENCE_COMPLETE) in iscsit_dataout_within_command_recovery_check()
[all …]
/drivers/rtc/
Dproc.c39 static int rtc_proc_show(struct seq_file *seq, void *offset) in rtc_proc_show() argument
42 struct rtc_device *rtc = seq->private; in rtc_proc_show()
49 seq_printf(seq, in rtc_proc_show()
57 seq_printf(seq, "alrm_time\t: %ptRt\n", &alrm.time); in rtc_proc_show()
58 seq_printf(seq, "alrm_date\t: %ptRd\n", &alrm.time); in rtc_proc_show()
59 seq_printf(seq, "alarm_IRQ\t: %s\n", in rtc_proc_show()
61 seq_printf(seq, "alrm_pending\t: %s\n", in rtc_proc_show()
63 seq_printf(seq, "update IRQ enabled\t: %s\n", in rtc_proc_show()
65 seq_printf(seq, "periodic IRQ enabled\t: %s\n", in rtc_proc_show()
67 seq_printf(seq, "periodic IRQ frequency\t: %d\n", in rtc_proc_show()
[all …]
/drivers/net/wireless/ath/wil6210/
Drx_reorder.c28 static inline int reorder_index(struct wil_tid_ampdu_rx *r, u16 seq) in reorder_index() argument
30 return seq_sub(seq, r->ssn) % r->buf_size; in reorder_index()
88 u16 seq; in wil_rx_reorder() local
94 wil->txrx_ops.get_reorder_params(wil, skb, &tid, &cid, &mid, &seq, in wil_rx_reorder()
99 mid, cid, tid, seq, mcast); in wil_rx_reorder()
118 if (retry && seq == r->mcast_last_seq) { in wil_rx_reorder()
121 seq); in wil_rx_reorder()
125 r->mcast_last_seq = seq; in wil_rx_reorder()
143 if (seq != r->head_seq_num) { in wil_rx_reorder()
144 if (seq_less(seq, r->head_seq_num)) { in wil_rx_reorder()
[all …]
/drivers/net/ethernet/pensando/ionic/
Dionic_debugfs.c37 static int identity_show(struct seq_file *seq, void *v) in identity_show() argument
39 struct ionic *ionic = seq->private; in identity_show()
44 seq_printf(seq, "nlifs: %d\n", ident->dev.nlifs); in identity_show()
45 seq_printf(seq, "nintrs: %d\n", ident->dev.nintrs); in identity_show()
46 seq_printf(seq, "ndbpgs_per_lif: %d\n", ident->dev.ndbpgs_per_lif); in identity_show()
47 seq_printf(seq, "intr_coal_mult: %d\n", ident->dev.intr_coal_mult); in identity_show()
48 seq_printf(seq, "intr_coal_div: %d\n", ident->dev.intr_coal_div); in identity_show()
50 seq_printf(seq, "max_ucast_filters: %d\n", ident->lif.eth.max_ucast_filters); in identity_show()
51 seq_printf(seq, "max_mcast_filters: %d\n", ident->lif.eth.max_mcast_filters); in identity_show()
75 static int q_tail_show(struct seq_file *seq, void *v) in q_tail_show() argument
[all …]
/drivers/isdn/capi/
Dkcapi_proc.c38 static void *controller_start(struct seq_file *seq, loff_t *pos) in controller_start() argument
49 static void *controller_next(struct seq_file *seq, void *v, loff_t *pos) in controller_next() argument
58 static void controller_stop(struct seq_file *seq, void *v) in controller_stop() argument
64 static int controller_show(struct seq_file *seq, void *v) in controller_show() argument
71 seq_printf(seq, "%d %-10s %-8s %-16s %s\n", in controller_show()
80 static int contrstats_show(struct seq_file *seq, void *v) in contrstats_show() argument
87 seq_printf(seq, "%d %lu %lu %lu %lu\n", in contrstats_show()
117 static void *applications_start(struct seq_file *seq, loff_t *pos) in applications_start() argument
129 applications_next(struct seq_file *seq, void *v, loff_t *pos) in applications_next() argument
138 static void applications_stop(struct seq_file *seq, void *v) in applications_stop() argument
[all …]
/drivers/misc/eeprom/
Didt_89hpesx.c259 const struct idt_smb_seq *seq) in idt_smb_write_byte() argument
266 for (idx = 0; idx < seq->bytecnt; idx++) { in idt_smb_write_byte()
268 ccode = seq->ccode | CCODE_BYTE; in idt_smb_write_byte()
271 if (idx == seq->bytecnt - 1) in idt_smb_write_byte()
276 seq->data[idx]); in idt_smb_write_byte()
291 struct idt_smb_seq *seq) in idt_smb_read_byte() argument
298 for (idx = 0; idx < seq->bytecnt; idx++) { in idt_smb_read_byte()
300 ccode = seq->ccode | CCODE_BYTE; in idt_smb_read_byte()
303 if (idx == seq->bytecnt - 1) in idt_smb_read_byte()
311 seq->data[idx] = (u8)sts; in idt_smb_read_byte()
[all …]
/drivers/char/
Dnvram.c411 static void pc_nvram_proc_read(unsigned char *nvram, struct seq_file *seq, in pc_nvram_proc_read() argument
421 seq_printf(seq, "Checksum status: %svalid\n", checksum ? "" : "not "); in pc_nvram_proc_read()
423 seq_printf(seq, "# floppies : %d\n", in pc_nvram_proc_read()
425 seq_printf(seq, "Floppy 0 type : "); in pc_nvram_proc_read()
428 seq_printf(seq, "%s\n", floppy_types[type]); in pc_nvram_proc_read()
430 seq_printf(seq, "%d (unknown)\n", type); in pc_nvram_proc_read()
431 seq_printf(seq, "Floppy 1 type : "); in pc_nvram_proc_read()
434 seq_printf(seq, "%s\n", floppy_types[type]); in pc_nvram_proc_read()
436 seq_printf(seq, "%d (unknown)\n", type); in pc_nvram_proc_read()
438 seq_printf(seq, "HD 0 type : "); in pc_nvram_proc_read()
[all …]
/drivers/staging/wfx/
Ddebug.c62 static int wfx_counters_show(struct seq_file *seq, void *v) in wfx_counters_show() argument
65 struct wfx_dev *wdev = seq->private; in wfx_counters_show()
76 seq_printf(seq, "%-24s %12s %12s %12s\n", in wfx_counters_show()
80 seq_printf(seq, "%-24s %12d %12d %12d\n", #name, \ in wfx_counters_show()
116 seq_printf(seq, "reserved[%02d]%12s %12d %12d %12d\n", i, "", in wfx_counters_show()
149 static int wfx_rx_stats_show(struct seq_file *seq, void *v) in wfx_rx_stats_show() argument
151 struct wfx_dev *wdev = seq->private; in wfx_rx_stats_show()
156 seq_printf(seq, "Timestamp: %dus\n", st->date); in wfx_rx_stats_show()
157 seq_printf(seq, "Low power clock: frequency %uHz, external %s\n", in wfx_rx_stats_show()
160 seq_printf(seq, in wfx_rx_stats_show()
[all …]

12345678910>>...25