Home
last modified time | relevance | path

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

/openbmc/linux/drivers/rtc/
H A Drtc-efi.c27 compute_yday(efi_time_t *eft) in compute_yday() argument
30 return rtc_year_days(eft->day, eft->month - 1, eft->year); in compute_yday()
37 compute_wday(efi_time_t *eft, int yday) in compute_wday() argument
39 int ndays = eft->year * (365 % 7) in compute_wday()
40 + (eft->year - 1) / 4 in compute_wday()
41 - (eft->year - 1) / 100 in compute_wday()
42 + (eft->year - 1) / 400 in compute_wday()
53 convert_to_efi_time(struct rtc_time *wtime, efi_time_t *eft) in convert_to_efi_time() argument
55 eft->year = wtime->tm_year + 1900; in convert_to_efi_time()
56 eft->month = wtime->tm_mon + 1; in convert_to_efi_time()
[all …]
/openbmc/qemu/hw/net/can/
H A Dctu_can_fd_regs.h224 uint32_t eft : 1; member
236 uint32_t eft : 1;
/openbmc/linux/drivers/scsi/qla2xxx/
H A Dqla_tmpl.c471 if (vha->hw->eft) { in qla27xx_fwdt_entry_t268()
476 qla27xx_insertbuf(vha->hw->eft, EFT_SIZE, buf, len); in qla27xx_fwdt_entry_t268()
H A Dqla_init.c2708 if (ha->eft) { in qla_enable_eft_trace()
2709 memset(ha->eft, 0, EFT_SIZE); in qla_enable_eft_trace()
3778 if (ha->eft) { in qla2x00_alloc_eft_trace()
3799 ha->eft = tc; in qla2x00_alloc_eft_trace()
3861 if (ha->eft) in qla2x00_alloc_fw_dump()
9457 if (ha->eft) { in qla82xx_restart_isp()
9458 memset(ha->eft, 0, EFT_SIZE); in qla82xx_restart_isp()
H A Dqla_dbg.c474 if (!ha->eft) in qla24xx_copy_eft()
477 memcpy(ptr, ha->eft, ntohl(ha->fw_dump->eft_size)); in qla24xx_copy_eft()
H A Dqla_os.c3737 if (ha->eft) in qla2x00_shutdown()
4853 if (ha->eft) in qla2x00_free_fw_dump()
4855 EFT_SIZE, ha->eft, ha->eft_dma); in qla2x00_free_fw_dump()
4862 ha->eft = NULL; in qla2x00_free_fw_dump()
H A Dqla_def.h4623 void *eft; member