Commit ee6584bf authored by Jiapeng Chong's avatar Jiapeng Chong Committed by Herbert Xu

crypto: marvell/octeontx - Use swap() instead of open coding it

Clean the following coccicheck warning:

./drivers/crypto/marvell/octeontx/otx_cptvf_algs.c:1645:16-17: WARNING
opportunity for swap().
Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 3d950c34
...@@ -1639,11 +1639,8 @@ static void swap_func(void *lptr, void *rptr, int size) ...@@ -1639,11 +1639,8 @@ static void swap_func(void *lptr, void *rptr, int size)
{ {
struct cpt_device_desc *ldesc = (struct cpt_device_desc *) lptr; struct cpt_device_desc *ldesc = (struct cpt_device_desc *) lptr;
struct cpt_device_desc *rdesc = (struct cpt_device_desc *) rptr; struct cpt_device_desc *rdesc = (struct cpt_device_desc *) rptr;
struct cpt_device_desc desc;
desc = *ldesc; swap(*ldesc, *rdesc);
*ldesc = *rdesc;
*rdesc = desc;
} }
int otx_cpt_crypto_init(struct pci_dev *pdev, struct module *mod, int otx_cpt_crypto_init(struct pci_dev *pdev, struct module *mod,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment