]> git.baikalelectronics.ru Git - kernel.git/commit
crypto: hisilicon - avoid unused function warning
authorArnd Bergmann <arnd@arndb.de>
Thu, 19 Sep 2019 14:05:52 +0000 (16:05 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 20 Sep 2019 13:05:33 +0000 (23:05 +1000)
commitaf0bfea2087598aae85e5f2a4d4fd856a44df6e9
tree9db1697e479437cc9d335649afc74fc4f9174e33
parent3fc2ca9ed1aa9e5544cbc57e34d7e7bf4961720b
crypto: hisilicon - avoid unused function warning

The only caller of hisi_zip_vf_q_assign() is hidden in an #ifdef,
so the function causes a warning when CONFIG_PCI_IOV is disabled:

drivers/crypto/hisilicon/zip/zip_main.c:740:12: error: unused function 'hisi_zip_vf_q_assign' [-Werror,-Wunused-function]

Replace the #ifdef with an IS_ENABLED() check that leads to the
function being dropped based on the configuration.

Fixes: 114100c36eb5 ("crypto: hisilicon - add SRIOV support for ZIP")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/hisilicon/zip/zip_main.c