Lines Matching defs:fmt
166 const char *fmt, va_list args)
170 fmt, args);
176 * @fmt: printf format string
178 * Format string according to @fmt and append it to @ehi->desc.
183 void __ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
187 va_start(args, fmt);
188 __ata_ehi_pushv_desc(ehi, fmt, args);
196 * @fmt: printf format string
198 * Format string according to @fmt and append it to @ehi->desc.
204 void ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...)
211 va_start(args, fmt);
212 __ata_ehi_pushv_desc(ehi, fmt, args);
236 * @fmt: printf format string
238 * Format string according to @fmt and append it to port
246 void ata_port_desc(struct ata_port *ap, const char *fmt, ...)
255 va_start(args, fmt);
256 __ata_ehi_pushv_desc(&ap->link.eh_info, fmt, args);