svn commit: r277214 - in head/sys/dev/sound: pci pcm

Baptiste Daroussin bapt at FreeBSD.org
Thu Jan 15 16:09:37 UTC 2015


Author: bapt
Date: Thu Jan 15 16:09:35 2015
New Revision: 277214
URL: https://svnweb.freebsd.org/changeset/base/277214

Log:
  Sound: fix typos in user visible messages etc.
  
  Submitted by:	Sascha Wildner <saw at online.de>
  Obtained from:	DragonFly
  MFC after:	3 days

Modified:
  head/sys/dev/sound/pci/emu10kx.c
  head/sys/dev/sound/pci/envy24.c
  head/sys/dev/sound/pci/envy24ht.c
  head/sys/dev/sound/pcm/channel.c

Modified: head/sys/dev/sound/pci/emu10kx.c
==============================================================================
--- head/sys/dev/sound/pci/emu10kx.c	Thu Jan 15 15:32:30 2015	(r277213)
+++ head/sys/dev/sound/pci/emu10kx.c	Thu Jan 15 16:09:35 2015	(r277214)
@@ -2316,7 +2316,7 @@ emu10kx_prepare(struct emu_sc_info *sc, 
 		}
 	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");
 

Modified: head/sys/dev/sound/pci/envy24.c
==============================================================================
--- head/sys/dev/sound/pci/envy24.c	Thu Jan 15 15:32:30 2015	(r277213)
+++ head/sys/dev/sound/pci/envy24.c	Thu Jan 15 16:09:35 2015	(r277214)
@@ -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)

Modified: head/sys/dev/sound/pci/envy24ht.c
==============================================================================
--- head/sys/dev/sound/pci/envy24ht.c	Thu Jan 15 15:32:30 2015	(r277213)
+++ head/sys/dev/sound/pci/envy24ht.c	Thu Jan 15 16:09:35 2015	(r277214)
@@ -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)

Modified: head/sys/dev/sound/pcm/channel.c
==============================================================================
--- head/sys/dev/sound/pcm/channel.c	Thu Jan 15 15:32:30 2015	(r277213)
+++ head/sys/dev/sound/pcm/channel.c	Thu Jan 15 16:09:35 2015	(r277214)
@@ -92,7 +92,7 @@ sysctl_hw_snd_latency_profile(SYSCTL_HAN
 }
 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);


More information about the svn-src-all mailing list