Home
last modified time | relevance | path

Searched refs:lec (Results 1 – 7 of 7) sorted by relevance

/linux-6.15/sound/soc/intel/avs/
H A Dtrace.h40 #define trace_avs_request(msg, sts, lec) \ argument
46 #define trace_avs_reply(msg, sts, lec) \ argument
52 #define trace_avs_notify(msg, sts, lec) \ argument
61 TP_PROTO(u64 header, u32 sts, u32 lec),
63 TP_ARGS(header, sts, lec),
68 __field(u32, lec)
74 __entry->lec = lec;
80 __entry->sts, __entry->lec)
85 TP_ARGS(header, sts, lec)
90 TP_ARGS(header, sts, lec)
[all …]
H A Dipc.c187 u32 sts, lec; in avs_dsp_receive_rx() local
190 lec = snd_hdac_adsp_readl(adev, AVS_FW_REG_ERROR(adev)); in avs_dsp_receive_rx()
191 trace_avs_ipc_reply_msg(header, sts, lec); in avs_dsp_receive_rx()
213 u32 sts, lec; in avs_dsp_process_notification() local
216 lec = snd_hdac_adsp_readl(adev, AVS_FW_REG_ERROR(adev)); in avs_dsp_process_notification()
217 trace_avs_ipc_notify_msg(header, sts, lec); in avs_dsp_process_notification()
373 u32 lec = UINT_MAX; in avs_dsp_send_tx() local
378 lec = snd_hdac_adsp_readl(adev, AVS_FW_REG_ERROR(adev)); in avs_dsp_send_tx()
381 trace_avs_request(tx, sts, lec); in avs_dsp_send_tx()
/linux-6.15/drivers/net/can/cc770/
H A Dcc770.c506 u8 lec; in cc770_err() local
549 lec = status & STAT_LEC_MASK; in cc770_err()
550 if (lec < 7 && lec > 0) { in cc770_err()
551 if (lec == STAT_LEC_ACK) { in cc770_err()
555 switch (lec) { in cc770_err()
/linux-6.15/net/atm/
H A DMakefile14 obj-$(CONFIG_ATM_LANE) += lec.o
/linux-6.15/sound/soc/sof/
H A Dipc4-fw-reg.h130 u32 lec; member
/linux-6.15/drivers/platform/x86/
H A Dthinkpad_acpi.c6458 u8 lec = 0; in tpacpi_brightness_checkpoint_nvram() local
6472 lec &= TP_EC_BACKLIGHT_LVLMSK; in tpacpi_brightness_checkpoint_nvram()
6480 b_nvram |= lec; in tpacpi_brightness_checkpoint_nvram()
6497 u8 lec = 0; in tpacpi_brightness_get_raw() local
6509 *status = lec; in tpacpi_brightness_get_raw()
6519 u8 lec = 0; in tpacpi_brightness_set_ec() local
6527 (lec & TP_EC_BACKLIGHT_CMDMSK) | in tpacpi_brightness_set_ec()
7061 u8 lec = 0; in tpacpi_volume_checkpoint_nvram() local
7085 lec &= ec_mask; in tpacpi_volume_checkpoint_nvram()
7088 if (lec != (b_nvram & ec_mask)) { in tpacpi_volume_checkpoint_nvram()
[all …]
/linux-6.15/drivers/net/can/m_can/
H A Dm_can.c920 static inline bool is_lec_err(u8 lec) in is_lec_err() argument
922 return lec != LEC_NO_ERROR && lec != LEC_NO_CHANGE; in is_lec_err()
978 u8 lec = FIELD_GET(PSR_LEC_MASK, psr); in m_can_handle_bus_errors() local
981 if (is_lec_err(lec)) { in m_can_handle_bus_errors()
983 work_done += m_can_handle_lec_err(dev, lec); in m_can_handle_bus_errors()