Commit 42a13ddb authored by Tang Bin's avatar Tang Bin Committed by Herbert Xu
Browse files

crypto: bcm - Remove the unnecessary cast for PTR_ERR().



It's not necessary to specify 'int' casting for PTR_ERR().

Signed-off-by: default avatarZhang Shengju <zhangshengju@cmss.chinamobile.com>
Signed-off-by: default avatarTang Bin <tangbin@cmss.chinamobile.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent d6fc1a45
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4436,7 +4436,7 @@ static int spu_mb_init(struct device *dev)
	for (i = 0; i < iproc_priv.spu.num_chan; i++) {
		iproc_priv.mbox[i] = mbox_request_channel(mcl, i);
		if (IS_ERR(iproc_priv.mbox[i])) {
			err = (int)PTR_ERR(iproc_priv.mbox[i]);
			err = PTR_ERR(iproc_priv.mbox[i]);
			dev_err(dev,
				"Mbox channel %d request failed with err %d",
				i, err);