| 163 | } |
| 164 | |
| 165 | void setWarningMessage_f(u32 device, char *file, int line, const char *fmt, ...) |
| 166 | { |
| 167 | va_list vl; |
| 168 | va_start(vl, fmt); |
| 169 | setWarningMessage_f_va(device, file, line, fmt, vl); |
| 170 | va_end(vl); |
| 171 | } |
| 172 | |
| 173 | void setLogMessage_f_va(u32 device, char *file, int line, const char *fmt, va_list vl) |
| 174 | { |
no test coverage detected