crypto: caam - remove unnecessary (void*) conversions

Pointer variables of void * type do not require type cast.

Signed-off-by: Yu Zhe <yuzhe@nfschina.com>
Reviewed-by: Gaurav Jain <Gaurav.jain@nxp.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Yu Zhe 2023-03-17 14:36:43 +08:00 committed by Herbert Xu
parent aedf818b1f
commit 9117e682b8

View File

@ -8,7 +8,7 @@
static int dpseci_dbg_fqs_show(struct seq_file *file, void *offset) static int dpseci_dbg_fqs_show(struct seq_file *file, void *offset)
{ {
struct dpaa2_caam_priv *priv = (struct dpaa2_caam_priv *)file->private; struct dpaa2_caam_priv *priv = file->private;
u32 fqid, fcnt, bcnt; u32 fqid, fcnt, bcnt;
int i, err; int i, err;