svn commit: r334386 - head/sys/dev/extres/regulator

Emmanuel Vadot manu at FreeBSD.org
Wed May 30 15:32:32 UTC 2018


Author: manu
Date: Wed May 30 15:32:31 2018
New Revision: 334386
URL: https://svnweb.freebsd.org/changeset/base/334386

Log:
  regulator: Fix typo (shuting/shutting)
  
  Submitted by:	Jose Luis Duran (github pull #151)

Modified:
  head/sys/dev/extres/regulator/regulator.c

Modified: head/sys/dev/extres/regulator/regulator.c
==============================================================================
--- head/sys/dev/extres/regulator/regulator.c	Wed May 30 15:25:48 2018	(r334385)
+++ head/sys/dev/extres/regulator/regulator.c	Wed May 30 15:32:31 2018	(r334386)
@@ -174,7 +174,7 @@ regulator_shutdown(void *dummy)
 	TAILQ_FOREACH(entry, &regnode_list, reglist_link) {
 		if (entry->std_param.always_on == 0 && disable) {
 			if (bootverbose)
-				printf("regulator: shuting down %s\n",
+				printf("regulator: shutting down %s\n",
 				    entry->name);
 			ret = regnode_status(entry, &status);
 			if (ret == 0 && status == REGULATOR_STATUS_ENABLED)


More information about the svn-src-head mailing list