Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

crypto: hisilicon/zip - move some private macros from 'zip.h' to 'zip_crypto.c'

Some macros which are defined in 'zip.h' are related to the struct
'hisi_zip_sqe' and are only used in 'zip_crypto.c'. So move them from
'zip.h' to 'zip_crypto.c'.

Signed-off-by: Yang Shen <shenyang39@huawei.com>
Reviewed-by: Zhou Wang <wangzhou1@hisilicon.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Yang Shen and committed by
Herbert Xu
f97a3d75 eb175f7c

+14 -14
-14
drivers/crypto/hisilicon/zip/zip.h
··· 9 9 #include <linux/list.h> 10 10 #include "../qm.h" 11 11 12 - /* hisi_zip_sqe dw3 */ 13 - #define HZIP_BD_STATUS_M GENMASK(7, 0) 14 - /* hisi_zip_sqe dw7 */ 15 - #define HZIP_IN_SGE_DATA_OFFSET_M GENMASK(23, 0) 16 - /* hisi_zip_sqe dw8 */ 17 - #define HZIP_OUT_SGE_DATA_OFFSET_M GENMASK(23, 0) 18 - /* hisi_zip_sqe dw9 */ 19 - #define HZIP_REQ_TYPE_M GENMASK(7, 0) 20 - #define HZIP_ALG_TYPE_ZLIB 0x02 21 - #define HZIP_ALG_TYPE_GZIP 0x03 22 - #define HZIP_BUF_TYPE_M GENMASK(11, 8) 23 - #define HZIP_PBUFFER 0x0 24 - #define HZIP_SGL 0x1 25 - 26 12 enum hisi_zip_error_type { 27 13 /* negative compression */ 28 14 HZIP_NC_ERR = 0x0d,
+14
drivers/crypto/hisilicon/zip/zip_crypto.c
··· 6 6 #include <linux/scatterlist.h> 7 7 #include "zip.h" 8 8 9 + /* hisi_zip_sqe dw3 */ 10 + #define HZIP_BD_STATUS_M GENMASK(7, 0) 11 + /* hisi_zip_sqe dw7 */ 12 + #define HZIP_IN_SGE_DATA_OFFSET_M GENMASK(23, 0) 13 + /* hisi_zip_sqe dw8 */ 14 + #define HZIP_OUT_SGE_DATA_OFFSET_M GENMASK(23, 0) 15 + /* hisi_zip_sqe dw9 */ 16 + #define HZIP_REQ_TYPE_M GENMASK(7, 0) 17 + #define HZIP_ALG_TYPE_ZLIB 0x02 18 + #define HZIP_ALG_TYPE_GZIP 0x03 19 + #define HZIP_BUF_TYPE_M GENMASK(11, 8) 20 + #define HZIP_PBUFFER 0x0 21 + #define HZIP_SGL 0x1 22 + 9 23 #define HZIP_ZLIB_HEAD_SIZE 2 10 24 #define HZIP_GZIP_HEAD_SIZE 10 11 25