Author: lwhsu
Date: Mon Jul  8 20:01:28 2019
New Revision: 349848
URL: https://svnweb.freebsd.org/changeset/base/349848

Log:
  - 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:
  head/sys/dev/superio/superio.c

Modified: head/sys/dev/superio/superio.c
==============================================================================
--- head/sys/dev/superio/superio.c      Mon Jul  8 19:59:15 2019        
(r349847)
+++ head/sys/dev/superio/superio.c      Mon Jul  8 20:01:28 2019        
(r349848)
@@ -405,7 +405,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:
@@ -415,6 +415,7 @@ devtype_to_str(superio_dev_type_t type)
        case SUPERIO_DEV_MAX:
                return ("invalid");
        }
+       return ("invalid");
 }
 
 static int
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to