Lines Matching defs:fmt
170 const char *fmt, va_list args)
174 fmt, args);
180 * @fmt: printf format string
182 * Format string according to @fmt and append it to @ehi->desc.
187 void __ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
191 va_start(args, fmt);
192 __ata_ehi_pushv_desc(ehi, fmt, args);
200 * @fmt: printf format string
202 * Format string according to @fmt and append it to @ehi->desc.
208 void ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
215 va_start(args, fmt);
216 __ata_ehi_pushv_desc(ehi, fmt, args);
240 * @fmt: printf format string
242 * Format string according to @fmt and append it to port
250 void ata_port_desc(struct ata_port *ap, const char *fmt, ...)
259 va_start(args, fmt);
260 __ata_ehi_pushv_desc(&ap->link.eh_info, fmt, args);