diff options
Diffstat (limited to 'drivers/crypto/caam/intern.h')
-rw-r--r-- | drivers/crypto/caam/intern.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/crypto/caam/intern.h b/drivers/crypto/caam/intern.h index a34be01b0b29..5cd4c1b268a1 100644 --- a/drivers/crypto/caam/intern.h +++ b/drivers/crypto/caam/intern.h | |||
@@ -43,7 +43,7 @@ struct caam_drv_private_jr { | |||
43 | struct device *parentdev; /* points back to controller dev */ | 43 | struct device *parentdev; /* points back to controller dev */ |
44 | int ridx; | 44 | int ridx; |
45 | struct caam_job_ring __iomem *rregs; /* JobR's register space */ | 45 | struct caam_job_ring __iomem *rregs; /* JobR's register space */ |
46 | struct tasklet_struct irqtask[NR_CPUS]; | 46 | struct tasklet_struct irqtask; |
47 | int irq; /* One per queue */ | 47 | int irq; /* One per queue */ |
48 | int assign; /* busy/free */ | 48 | int assign; /* busy/free */ |
49 | 49 | ||
@@ -86,10 +86,10 @@ struct caam_drv_private { | |||
86 | 86 | ||
87 | /* which jr allocated to scatterlist crypto */ | 87 | /* which jr allocated to scatterlist crypto */ |
88 | atomic_t tfm_count ____cacheline_aligned; | 88 | atomic_t tfm_count ____cacheline_aligned; |
89 | int num_jrs_for_algapi; | ||
90 | struct device **algapi_jr; | ||
91 | /* list of registered crypto algorithms (mk generic context handle?) */ | 89 | /* list of registered crypto algorithms (mk generic context handle?) */ |
92 | struct list_head alg_list; | 90 | struct list_head alg_list; |
91 | /* list of registered hash algorithms (mk generic context handle?) */ | ||
92 | struct list_head hash_list; | ||
93 | 93 | ||
94 | /* | 94 | /* |
95 | * debugfs entries for developer view into driver/device | 95 | * debugfs entries for developer view into driver/device |