Home
last modified time | relevance | path

Searched refs:tseq (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/drivers/input/misc/
H A Dhp_sdc_rtc.c86 t.seq = tseq; in hp_sdc_rtc_do_read_bbrtc()
97 if (!((tseq[83] | tseq[90] | tseq[69] | tseq[76] | in hp_sdc_rtc_do_read_bbrtc()
98 tseq[55] | tseq[62] | tseq[34] | tseq[41] | in hp_sdc_rtc_do_read_bbrtc()
99 tseq[20] | tseq[27] | tseq[6] | tseq[13]) & 0x0f)) in hp_sdc_rtc_do_read_bbrtc()
103 rtctm->tm_year = (tseq[83] & 0x0f) + (tseq[90] & 0x0f) * 10; in hp_sdc_rtc_do_read_bbrtc()
104 rtctm->tm_mon = (tseq[69] & 0x0f) + (tseq[76] & 0x0f) * 10; in hp_sdc_rtc_do_read_bbrtc()
105 rtctm->tm_mday = (tseq[55] & 0x0f) + (tseq[62] & 0x0f) * 10; in hp_sdc_rtc_do_read_bbrtc()
107 rtctm->tm_hour = (tseq[34] & 0x0f) + (tseq[41] & 0x0f) * 10; in hp_sdc_rtc_do_read_bbrtc()
108 rtctm->tm_min = (tseq[20] & 0x0f) + (tseq[27] & 0x0f) * 10; in hp_sdc_rtc_do_read_bbrtc()
109 rtctm->tm_sec = (tseq[6] & 0x0f) + (tseq[13] & 0x0f) * 10; in hp_sdc_rtc_do_read_bbrtc()
[all …]
/openbmc/linux/drivers/input/serio/
H A Dhp_sdc_mlc.c56 u8 tseq[16]; member
207 priv->tseq[0] = in hp_sdc_mlc_cts()
210 priv->tseq[2] = 1; in hp_sdc_mlc_cts()
211 priv->tseq[3] = 0; in hp_sdc_mlc_cts()
212 priv->tseq[4] = 0; in hp_sdc_mlc_cts()
247 priv->tseq[0] = in hp_sdc_mlc_out()
250 priv->tseq[2] = in hp_sdc_mlc_out()
254 priv->tseq[3] = in hp_sdc_mlc_out()
288 priv->tseq[0] = in hp_sdc_mlc_out()
291 priv->tseq[2] = 1; in hp_sdc_mlc_out()
[all …]
/openbmc/linux/kernel/trace/
H A Dtrace_recursion_record.c119 static struct trace_seq *tseq; variable
132 tseq = kzalloc(sizeof(*tseq), GFP_KERNEL); in recursed_function_seq_start()
133 if (!tseq) in recursed_function_seq_start()
136 trace_seq_init(tseq); in recursed_function_seq_start()
154 kfree(tseq); in recursed_function_seq_stop()
164 trace_seq_print_sym(tseq, record->parent_ip, true); in recursed_function_seq_show()
165 trace_seq_puts(tseq, ":\t"); in recursed_function_seq_show()
166 trace_seq_print_sym(tseq, record->ip, true); in recursed_function_seq_show()
167 trace_seq_putc(tseq, '\n'); in recursed_function_seq_show()
168 ret = trace_print_seq(m, tseq); in recursed_function_seq_show()
/openbmc/linux/net/rxrpc/
H A Drecvmsg.c111 rxrpc_seq_t old_consumed = call->rx_consumed, tseq; in rxrpc_rotate_rx_window() local
121 tseq = sp->hdr.seq; in rxrpc_rotate_rx_window()
126 if (after(tseq, call->rx_consumed)) in rxrpc_rotate_rx_window()
127 smp_store_release(&call->rx_consumed, tseq); in rxrpc_rotate_rx_window()