diff options
author | Alex Porosanu <alexandru.porosanu@freescale.com> | 2014-02-06 12:27:19 +0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-02-09 05:59:27 +0400 |
commit | 883619a931e9f54fca7495321b339669f11cc727 (patch) | |
tree | b4c2f370104a47d7792a950d47f52621bca696cf /drivers/crypto/caam/ctrl.h | |
parent | d167b6e1fb8ad386b17485ca88804d14f1695805 (diff) | |
download | linux-883619a931e9f54fca7495321b339669f11cc727.tar.xz |
crypto: caam - fix ERA retrieval function
SEC ERA has to be retrieved by reading the "fsl,sec-era" property
from the device tree. This property is updated/filled in by
u-boot.
Signed-off-by: Alex Porosanu <alexandru.porosanu@freescale.com>
Reviewed-by: Horia Geanta <horia.geanta@freescale.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/caam/ctrl.h')
-rw-r--r-- | drivers/crypto/caam/ctrl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/caam/ctrl.h b/drivers/crypto/caam/ctrl.h index 980d44eaaf40..cac5402a46eb 100644 --- a/drivers/crypto/caam/ctrl.h +++ b/drivers/crypto/caam/ctrl.h @@ -8,6 +8,6 @@ #define CTRL_H /* Prototypes for backend-level services exposed to APIs */ -int caam_get_era(u64 caam_id); +int caam_get_era(void); #endif /* CTRL_H */ |