Sound: fix typos in user visible messages etc.

Submitted by:	Sascha Wildner <saw@online.de>
Obtained from:	DragonFly
MFC after:	3 days
This commit is contained in:
Baptiste Daroussin 2015-01-15 16:09:35 +00:00
parent 1a26c3c047
commit 6455cdfb29
4 changed files with 4 additions and 4 deletions

View File

@ -2316,7 +2316,7 @@ emu10kx_prepare(struct emu_sc_info *sc, struct sbuf *s)
}
if (sc->midi[0] != NULL)
if (device_is_attached(sc->midi[0])) {
sbuf_printf(s, "\tIR reciever MIDI events %s\n", sc->enable_ir ? "enabled" : "disabled");
sbuf_printf(s, "\tIR receiver MIDI events %s\n", sc->enable_ir ? "enabled" : "disabled");
}
sbuf_printf(s, "Card is in %s mode\n", (sc->mode == MODE_ANALOG) ? "analog" : "digital");

View File

@ -2312,7 +2312,7 @@ envy24_putcfg(struct sc_info *sc)
printf("from external clock synthesizer chip\n");
break;
default:
printf("illeagal system setting\n");
printf("illegal system setting\n");
}
printf(" MPU-401 UART(s) #: ");
if (sc->cfg->scfg & PCIM_SCFG_MPU)

View File

@ -2212,7 +2212,7 @@ envy24ht_putcfg(struct sc_info *sc)
printf("reserved\n");
break;
default:
printf("illeagal system setting\n");
printf("illegal system setting\n");
}
printf(" MPU-401 UART(s) #: ");
if (sc->cfg->scfg & ENVY24HT_CCSM_SCFG_MPU)

View File

@ -92,7 +92,7 @@ sysctl_hw_snd_latency_profile(SYSCTL_HANDLER_ARGS)
}
SYSCTL_PROC(_hw_snd, OID_AUTO, latency_profile, CTLTYPE_INT | CTLFLAG_RW,
0, sizeof(int), sysctl_hw_snd_latency_profile, "I",
"buffering latency profile (0=aggresive 1=safe)");
"buffering latency profile (0=aggressive 1=safe)");
static int chn_timeout = CHN_TIMEOUT;
TUNABLE_INT("hw.snd.timeout", &chn_timeout);