diff options
| author | Tom Rini <[email protected]> | 2023-02-01 09:30:52 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-02-01 09:30:52 -0500 |
| commit | 3592a61fa8b4b55c0fab9a75bfb9ac3c73fdcbc0 (patch) | |
| tree | 46d89652f8a6235ed0cdcd6473be02c98269395a /drivers/misc | |
| parent | 73a3f5139182a0389d505bf29b0ad4bc29424cf8 (diff) | |
| parent | f42c0726fd02e978a524ab35b060382d317ef438 (diff) | |
Merge tag 'u-boot-imx-20230201' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
For 2023.04
-----------
- several conversion to DM_SERIAL and DM_I2C
- fixes for Toradex boards
- PSCI
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/14965
Diffstat (limited to 'drivers/misc')
| -rw-r--r-- | drivers/misc/imx8/scu_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/imx8/scu_api.c b/drivers/misc/imx8/scu_api.c index 27ecce710fc..8f546e9b3fc 100644 --- a/drivers/misc/imx8/scu_api.c +++ b/drivers/misc/imx8/scu_api.c @@ -788,7 +788,7 @@ sc_bool_t sc_rm_is_pad_owned(sc_ipc_t ipc, sc_pad_t pad) RPC_VER(&msg) = SC_RPC_VERSION; RPC_SVC(&msg) = (u8)SC_RPC_SVC_RM; RPC_FUNC(&msg) = (u8)RM_FUNC_IS_PAD_OWNED; - RPC_U8(&msg, 0U) = (u8)pad; + RPC_U16(&msg, 0U) = (u16)pad; RPC_SIZE(&msg) = 2U; ret = misc_call(dev, SC_FALSE, &msg, size, &msg, size); |
