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:
parent
db3fd9c10a
commit
a5e409a322
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user