set_time
struct bnxt_ioctl_hwrm_fw_set_time set_time;
&iod->set_time;
.set_time = set_time,
.u.efi_runtime_call.u.set_time.year = tm->tm_year,
.u.efi_runtime_call.u.set_time.month = tm->tm_mon,
.u.efi_runtime_call.u.set_time.day = tm->tm_mday,
.u.efi_runtime_call.u.set_time.hour = tm->tm_hour,
.u.efi_runtime_call.u.set_time.min = tm->tm_min,
.u.efi_runtime_call.u.set_time.sec = tm->tm_sec,
.u.efi_runtime_call.u.set_time.ns = tm->tm_nsec,
.u.efi_runtime_call.u.set_time.tz = tm->tm_tz,
.u.efi_runtime_call.u.set_time.daylight = tm->tm_dst,
.set_time = set_time,
int (*set_time)(struct efi_tm *);
if (active_efi_ops->set_time == NULL)
return (active_efi_ops->set_time(tm));