mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-11-29 14:41:26 +01:00
drivers: misc: s400_api: Update S400_SUCCESS_IND to 0xd6
According to latest S400 API doc, the the success indicate value is changed to 0xd6. So update the driver codes. Signed-off-by: Ye Li <ye.li@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
aadd6ca158
commit
a6ffde5ea5
@ -185,7 +185,7 @@ static int imx8ulp_mu_call(struct udevice *dev, int no_resp, void *tx_msg,
|
|||||||
}
|
}
|
||||||
|
|
||||||
result = ((struct imx8ulp_s400_msg *)rx_msg)->data[0];
|
result = ((struct imx8ulp_s400_msg *)rx_msg)->data[0];
|
||||||
if ((result & 0xff) == 0)
|
if ((result & 0xff) == 0xd6)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
return -EIO;
|
return -EIO;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user