svn commit: r246983 - head/sys/dev/sound/pci/hda

Ulrich Spoerlein uqs at FreeBSD.org
Tue Feb 19 10:25:52 UTC 2013


Author: uqs
Date: Tue Feb 19 10:25:51 2013
New Revision: 246983
URL: http://svnweb.freebsd.org/changeset/base/246983

Log:
  Fix typo
  
  Submitted by:	Matt Burke <mattblists at icritical.com>

Modified:
  head/sys/dev/sound/pci/hda/hdaa.c

Modified: head/sys/dev/sound/pci/hda/hdaa.c
==============================================================================
--- head/sys/dev/sound/pci/hda/hdaa.c	Tue Feb 19 08:07:11 2013	(r246982)
+++ head/sys/dev/sound/pci/hda/hdaa.c	Tue Feb 19 10:25:51 2013	(r246983)
@@ -557,7 +557,7 @@ hdaa_presence_handler(struct hdaa_widget
 	HDA_BOOTVERBOSE(
 		if (connected || old != 2) {
 			device_printf(devinfo->dev,
-			    "Pin sense: nid=%d sence=0x%08x (%sconnected)\n",
+			    "Pin sense: nid=%d sense=0x%08x (%sconnected)\n",
 			    w->nid, res, !connected ? "dis" : "");
 		}
 	);
@@ -706,7 +706,7 @@ hdaa_eld_handler(struct hdaa_widget *w)
 	}
 	HDA_BOOTVERBOSE(
 		device_printf(devinfo->dev,
-		    "Pin sense: nid=%d sence=0x%08x "
+		    "Pin sense: nid=%d sense=0x%08x "
 		    "(%sconnected, ELD %svalid)\n",
 		    w->nid, res,
 		    (res & HDA_CMD_GET_PIN_SENSE_PRESENCE_DETECT) ? "" : "dis",


More information about the svn-src-all mailing list