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