]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
crypto: qat - removed unused macro in adf_cnv_dbgfs.c
authorAdam Guerin <adam.guerin@intel.com>
Fri, 16 Feb 2024 15:19:56 +0000 (15:19 +0000)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sat, 24 Feb 2024 00:41:20 +0000 (08:41 +0800)
This macro was added but never used, remove it.

This is to fix the following warning when compiling the QAT driver
using the clang compiler with CC=clang W=2:
    drivers/crypto/intel/qat/qat_common/adf_cnv_dbgfs.c:19:9: warning: macro is not used [-Wunused-macros]
       19 | #define CNV_SLICE_ERR_MASK              GENMASK(7, 0)
          |         ^

Fixes: d807f0240c71 ("crypto: qat - add cnv_errors debugfs file")
Signed-off-by: Adam Guerin <adam.guerin@intel.com>
Reviewed-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/intel/qat/qat_common/adf_cnv_dbgfs.c

index 07119c487da0195cbb268a82e9242c1d2ff1519d..627953a72d4784c82b53c9ddc7d8e64002a9f524 100644 (file)
@@ -16,7 +16,6 @@
 
 #define CNV_ERR_INFO_MASK              GENMASK(11, 0)
 #define CNV_ERR_TYPE_MASK              GENMASK(15, 12)
-#define CNV_SLICE_ERR_MASK             GENMASK(7, 0)
 #define CNV_SLICE_ERR_SIGN_BIT_INDEX   7
 #define CNV_DELTA_ERR_SIGN_BIT_INDEX   11