fips_h             56 drivers/crypto/ccree/cc_fips.c 	struct cc_fips_handle *fips_h =
fips_h             58 drivers/crypto/ccree/cc_fips.c 	struct cc_drvdata *drvdata = fips_h->drvdata;
fips_h             69 drivers/crypto/ccree/cc_fips.c 	struct cc_fips_handle *fips_h = drvdata->fips_handle;
fips_h             71 drivers/crypto/ccree/cc_fips.c 	if (drvdata->hw_rev < CC_HW_REV_712 || !fips_h)
fips_h             74 drivers/crypto/ccree/cc_fips.c 	atomic_notifier_chain_unregister(&fips_fail_notif_chain, &fips_h->nb);
fips_h             77 drivers/crypto/ccree/cc_fips.c 	tasklet_kill(&fips_h->tasklet);
fips_h            133 drivers/crypto/ccree/cc_fips.c 	struct cc_fips_handle *fips_h;
fips_h            139 drivers/crypto/ccree/cc_fips.c 	fips_h = devm_kzalloc(dev, sizeof(*fips_h), GFP_KERNEL);
fips_h            140 drivers/crypto/ccree/cc_fips.c 	if (!fips_h)
fips_h            143 drivers/crypto/ccree/cc_fips.c 	p_drvdata->fips_handle = fips_h;
fips_h            146 drivers/crypto/ccree/cc_fips.c 	tasklet_init(&fips_h->tasklet, fips_dsr, (unsigned long)p_drvdata);
fips_h            147 drivers/crypto/ccree/cc_fips.c 	fips_h->drvdata = p_drvdata;
fips_h            148 drivers/crypto/ccree/cc_fips.c 	fips_h->nb.notifier_call = cc_ree_fips_failure;
fips_h            149 drivers/crypto/ccree/cc_fips.c 	atomic_notifier_chain_register(&fips_fail_notif_chain, &fips_h->nb);