Author: avg
Date: Tue Jul 16 16:02:03 2019
New Revision: 350047
URL: https://svnweb.freebsd.org/changeset/base/350047

Log:
  MFC r349579: nctgpio: change default pin names to those used by the 
datasheet(s)
  
  That is, instead of the current GPIO00 - GPIO15 the names will be GPIO00
  - GPIO07, GPIO10 - GPIO17.  The first digit is a GPIO "bank" / group
  number and the second one is a pin number within the bank.  Alternative
  view is that the pin names are changed from decimal numbering scheme to
  octal one (as there are 8 pins per bank).

Modified:
  stable/11/sys/dev/nctgpio/nctgpio.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/nctgpio/nctgpio.c
==============================================================================
--- stable/11/sys/dev/nctgpio/nctgpio.c Tue Jul 16 16:01:51 2019        
(r350046)
+++ stable/11/sys/dev/nctgpio/nctgpio.c Tue Jul 16 16:02:03 2019        
(r350047)
@@ -529,7 +529,7 @@ nct_attach(device_t dev)
                pin->gp_caps = NCT_GPIO_CAPS;
                pin->gp_flags = 0;
 
-               snprintf(pin->gp_name, GPIOMAXNAME, "GPIO%02u", i);
+               snprintf(pin->gp_name, GPIOMAXNAME, "GPIO%02o", i);
                pin->gp_name[GPIOMAXNAME - 1] = '\0';
 
                if (nct_pin_is_input(sc, i))
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to