Author: jchandra
Date: Sun Oct 21 02:12:26 2018
New Revision: 339517
URL: https://svnweb.freebsd.org/changeset/base/339517

Log:
  arm generic_timer: fix armv8 timer desc
  
  In the FDT based probe, check for "arm,armv8-timer" before "arm,armv7-timer".
  This gets the description right when the timer node has both entries in
  compatible list.

Modified:
  head/sys/arm/arm/generic_timer.c

Modified: head/sys/arm/arm/generic_timer.c
==============================================================================
--- head/sys/arm/arm/generic_timer.c    Sun Oct 21 02:08:57 2018        
(r339516)
+++ head/sys/arm/arm/generic_timer.c    Sun Oct 21 02:12:26 2018        
(r339517)
@@ -323,11 +323,11 @@ arm_tmr_fdt_probe(device_t dev)
        if (!ofw_bus_status_okay(dev))
                return (ENXIO);
 
-       if (ofw_bus_is_compatible(dev, "arm,armv7-timer")) {
-               device_set_desc(dev, "ARMv7 Generic Timer");
-               return (BUS_PROBE_DEFAULT);
-       } else if (ofw_bus_is_compatible(dev, "arm,armv8-timer")) {
+       if (ofw_bus_is_compatible(dev, "arm,armv8-timer")) {
                device_set_desc(dev, "ARMv8 Generic Timer");
+               return (BUS_PROBE_DEFAULT);
+       } else if (ofw_bus_is_compatible(dev, "arm,armv7-timer")) {
+               device_set_desc(dev, "ARMv7 Generic Timer");
                return (BUS_PROBE_DEFAULT);
        }
 
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to