| 287 | } |
| 288 | |
| 289 | void probing_for(const char *vendor, const char *info, uint16_t port) |
| 290 | { |
| 291 | if (!verbose) |
| 292 | return; |
| 293 | |
| 294 | /* Yes, there's no space between '%s' and 'at'! */ |
| 295 | printf("Probing for %s Super I/O %sat 0x%x...\n", vendor, info, port); |
| 296 | } |
| 297 | |
| 298 | /** Print a list of all supported chips from the given vendor. */ |
| 299 | void print_vendor_chips(const char *vendor, |
no test coverage detected