p_time
const char * p_time(u_int32_t);
ecore_mfw_get_tlv_time_value(struct ecore_mfw_tlv_time *p_time,
if (!p_time->b_set)
if (p_time->month > 12)
p_time->month = 0;
if (p_time->day > 31)
p_time->day = 0;
if (p_time->hour > 23)
p_time->hour = 0;
if (p_time->min > 59)
p_time->hour = 0;
if (p_time->msec > 999)
p_time->msec = 0;
if (p_time->usec > 999)
p_time->usec = 0;
p_time->month, p_time->day,
p_time->hour, p_time->min,
p_time->msec, p_time->usec);