struct soundhw *c;
if (soundhw_count) {
- printf("Valid sound card names (comma separated):\n");
- for (c = soundhw; c->name; ++c) {
- printf ("%-11s %s\n", c->name, c->descr);
- }
+ printf("Valid audio device model names:\n");
+ for (c = soundhw; c->name; ++c) {
+ printf("%-11s %s\n", c->name, c->descr);
+ }
} else {
- printf("Machine has no user-selectable audio hardware "
- "(it may or may not have always-present audio hardware).\n");
+ printf("Machine has no user-selectable audio hardware "
+ "(it may or may not have always-present audio hardware).\n");
}
}
struct soundhw *c;
if (selected) {
- error_report("only one -soundhw option is allowed");
+ error_report("only one -audio option is allowed");
exit(1);
}
}
if (!c->name) {
- error_report("Unknown sound card name `%s'", name);
+ error_report("Unknown audio device model `%s'", name);
show_valid_soundhw();
exit(1);
}
c->init_pci(pci_bus, audiodev_id);
}
}
-