Author: ganbold
Date: Wed Apr 19 05:59:00 2017
New Revision: 317126
URL: https://svnweb.freebsd.org/changeset/base/317126

Log:
  Use hwreset_get_by_ofw_idx() function instead, since there is
  no reset-names dts property defined for IR in case of H3 SoC.
  That way IR works on H3 SoC based board.
  Tested on Orangepi mini 2 board.

Modified:
  head/sys/arm/allwinner/aw_cir.c

Modified: head/sys/arm/allwinner/aw_cir.c
==============================================================================
--- head/sys/arm/allwinner/aw_cir.c     Wed Apr 19 05:28:21 2017        
(r317125)
+++ head/sys/arm/allwinner/aw_cir.c     Wed Apr 19 05:59:00 2017        
(r317126)
@@ -419,7 +419,7 @@ aw_ir_attach(device_t dev)
        }
 
        /* De-assert reset */
-       if (hwreset_get_by_ofw_name(dev, 0, "apb", &rst_apb) == 0) {
+       if (hwreset_get_by_ofw_idx(dev, 0, 0, &rst_apb) == 0) {
                err = hwreset_deassert(rst_apb);
                if (err != 0) {
                        device_printf(dev, "cannot de-assert reset\n");
_______________________________________________
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