Date: Wed, 30 May 2018 15:32:32 +0000 (UTC) From: Emmanuel Vadot <manu@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r334386 - head/sys/dev/extres/regulator Message-ID: <201805301532.w4UFWWbn023471@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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, ®node_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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805301532.w4UFWWbn023471>