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.
This commit is contained in:
ganbold 2017-04-19 05:59:00 +00:00
parent db3fd9c10a
commit a5e409a322

View File

@ -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");