svn commit: r368786 - stable/12/sys/dev/superio

Ryan Libby rlibby at FreeBSD.org
Sat Dec 19 04:28:26 UTC 2020


Author: rlibby
Date: Sat Dec 19 04:28:25 2020
New Revision: 368786
URL: https://svnweb.freebsd.org/changeset/base/368786

Log:
  MFC r349848 (by lwhsu):
  
  - Fix gcc build for superio(4)
  - Change string mapping of SUPERIO_DEV_NONE to distinguish from SUPERIO_DEV_MAX
  
  Reviewed by:	imp
  Discussed with:	avg, imp, jhb
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D20880

Modified:
  stable/12/sys/dev/superio/superio.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/dev/superio/superio.c
==============================================================================
--- stable/12/sys/dev/superio/superio.c	Sat Dec 19 04:24:05 2020	(r368785)
+++ stable/12/sys/dev/superio/superio.c	Sat Dec 19 04:28:25 2020	(r368786)
@@ -419,7 +419,7 @@ devtype_to_str(superio_dev_type_t type)
 {
 	switch (type) {
 	case SUPERIO_DEV_NONE:
-		return ("invalid");
+		return ("none");
 	case SUPERIO_DEV_HWM:
 		return ("HWM");
 	case SUPERIO_DEV_WDT:
@@ -429,6 +429,7 @@ devtype_to_str(superio_dev_type_t type)
 	case SUPERIO_DEV_MAX:
 		return ("invalid");
 	}
+	return ("invalid");
 }
 
 static int


More information about the svn-src-stable mailing list