Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/6178e9597806033529fdd52c1678f3a7c92510d5 You should set ROOT_URL correctly, otherwise the web may not work correctly.

drivers/crypto/fsl: correct error checking in run_descriptor

When CAAM runs a descriptor and an error occurs, a non-zero
value is set in Output Status Register. The if condition should
check the status for a non-zero value.

Signed-off-by: Aneesh Bansal <aneesh.bansal@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
master
Aneesh Bansal 9 years ago committed by York Sun
parent abc7d0f75c
commit 6178e95978
  1. 2
      drivers/crypto/fsl/jr.c

@ -360,7 +360,7 @@ int run_descriptor_jr(uint32_t *desc)
}
}
if (!op.status) {
if (op.status) {
debug("Error %x\n", op.status);
ret = op.status;
}

Loading…
Cancel
Save