summaryrefslogtreecommitdiff
path: root/package/kernel/lantiq/ltq-deu/src/ifxmips_sha1_hmac.c
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2018-03-18 01:32:47 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2018-03-18 14:06:00 +0100
commit5587b8f451dd829349095701f0f363af5da12d99 (patch)
tree44c3a7fe33d04e677db50ac54f6986581a53a736 /package/kernel/lantiq/ltq-deu/src/ifxmips_sha1_hmac.c
parentbecf58e080df31e2d9688fba73e7f242343fe934 (diff)
downloadmtk-20170518-5587b8f451dd829349095701f0f363af5da12d99.zip
mtk-20170518-5587b8f451dd829349095701f0f363af5da12d99.tar.gz
mtk-20170518-5587b8f451dd829349095701f0f363af5da12d99.tar.bz2
ltq-deu: Fix section mismatches
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'package/kernel/lantiq/ltq-deu/src/ifxmips_sha1_hmac.c')
-rw-r--r--package/kernel/lantiq/ltq-deu/src/ifxmips_sha1_hmac.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/package/kernel/lantiq/ltq-deu/src/ifxmips_sha1_hmac.c b/package/kernel/lantiq/ltq-deu/src/ifxmips_sha1_hmac.c
index 7287a82..791b966 100644
--- a/package/kernel/lantiq/ltq-deu/src/ifxmips_sha1_hmac.c
+++ b/package/kernel/lantiq/ltq-deu/src/ifxmips_sha1_hmac.c
@@ -342,11 +342,11 @@ static struct shash_alg ifxdeu_sha1_hmac_alg = {
};
-/*! \fn int __init ifxdeu_init_sha1_hmac (void)
+/*! \fn int ifxdeu_init_sha1_hmac (void)
* \ingroup IFX_SHA1_HMAC_FUNCTIONS
* \brief initialize sha1 hmac driver
*/
-int __init ifxdeu_init_sha1_hmac (void)
+int ifxdeu_init_sha1_hmac (void)
{
int ret = -ENOSYS;
@@ -365,11 +365,11 @@ sha1_err:
return ret;
}
-/*! \fn void __exit ifxdeu_fini_sha1_hmac (void)
+/*! \fn void ifxdeu_fini_sha1_hmac (void)
* \ingroup IFX_SHA1_HMAC_FUNCTIONS
* \brief unregister sha1 hmac driver
*/
-void __exit ifxdeu_fini_sha1_hmac (void)
+void ifxdeu_fini_sha1_hmac (void)
{
crypto_unregister_shash(&ifxdeu_sha1_hmac_alg);