Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 23457bc9 authored by Kim Phillips's avatar Kim Phillips Committed by Herbert Xu
Browse files

crypto: caam - fix build warning when DEBUG_FS not configured



drivers/crypto/caam/ctrl.c: In function 'caam_probe':
drivers/crypto/caam/ctrl.c:55:23: warning: unused variable 'perfmon'

Signed-off-by: default avatarKim Phillips <kim.phillips@freescale.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent cfa2b54e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -52,9 +52,11 @@ static int caam_probe(struct platform_device *pdev)
	struct caam_ctrl __iomem *ctrl;
	struct caam_full __iomem *topregs;
	struct caam_drv_private *ctrlpriv;
	struct caam_perfmon *perfmon;
	struct caam_deco **deco;
	u32 deconum;
#ifdef CONFIG_DEBUG_FS
	struct caam_perfmon *perfmon;
#endif

	ctrlpriv = kzalloc(sizeof(struct caam_drv_private), GFP_KERNEL);
	if (!ctrlpriv)