1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 3 #ifndef UTILS_H 4 #define UTILS_H 5 int cryptodev_sg_copy(struct scatterlist *sg_from, struct scatterlist *sg_to, int len); 6 struct scatterlist *cryptodev_sg_advance(struct scatterlist *sg, int consumed); 7 #endif 8 9