diff options
| author | Tadeusz Struk <[email protected]> | 2016-04-15 10:54:07 -0700 |
|---|---|---|
| committer | Herbert Xu <[email protected]> | 2016-04-18 18:49:52 +0800 |
| commit | b3ab30a7cbdaf7ba20dddeac252cc0238312fff0 (patch) | |
| tree | 41dd9be87cdad0c739f98cb2fdd7d1950d25cb59 | |
| parent | 87ba569a398826733b14e77668c8d2630119b0ca (diff) | |
crypto: qat - fix section mismatch warning
Fix Section mismatch warinig in adf_exit_vf_wq()
Reported-by: kbuild test robot <[email protected]>
Signed-off-by: Tadeusz Struk <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
| -rw-r--r-- | drivers/crypto/qat/qat_common/adf_vf_isr.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |