From: Tadeusz Struk Date: Fri, 15 Apr 2016 17:54:07 +0000 (-0700) Subject: crypto: qat - fix section mismatch warning X-Git-Tag: Ubuntu-4.10.0-19.21~3381^2~28 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=b3ab30a7cbdaf7ba20dddeac252cc0238312fff0;p=mirror_ubuntu-artful-kernel.git crypto: qat - fix section mismatch warning Fix Section mismatch warinig in adf_exit_vf_wq() Reported-by: kbuild test robot Signed-off-by: Tadeusz Struk Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/qat/qat_common/adf_vf_isr.c b/drivers/crypto/qat/qat_common/adf_vf_isr.c index 5d45796576ee..aa689cabedb4 100644 --- a/drivers/crypto/qat/qat_common/adf_vf_isr.c +++ b/drivers/crypto/qat/qat_common/adf_vf_isr.c @@ -326,7 +326,7 @@ int __init adf_init_vf_wq(void) return !adf_vf_stop_wq ? -EFAULT : 0; } -void __exit adf_exit_vf_wq(void) +void adf_exit_vf_wq(void) { if (adf_vf_stop_wq) destroy_workqueue(adf_vf_stop_wq);