regulator: Fix typo (shuting/shutting)

Submitted by:	Jose Luis Duran (github pull #151)
This commit is contained in:
Emmanuel Vadot 2018-05-30 15:32:31 +00:00
parent e2b8bf0a18
commit 0194dcd7a9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=334386

View file

@ -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)