From 7d91869c73f8d4ec905903a5c61ba2b5eb1e7164 Mon Sep 17 00:00:00 2001 From: LABBE Corentin Date: Fri, 28 Jul 2017 12:30:47 +0200 Subject: scsi: zfcp: replace zfcp_qdio_sbale_count by sg_nents The zfcp_qdio_sbale_count function do the same work than sg_nents(). So replace it by sg_nents() for removing duplicate code. Signed-off-by: LABBE Corentin Signed-off-by: Steffen Maier Signed-off-by: Benjamin Block Signed-off-by: Martin K. Petersen --- drivers/s390/scsi/zfcp_qdio.h | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'drivers/s390/scsi/zfcp_qdio.h') diff --git a/drivers/s390/scsi/zfcp_qdio.h b/drivers/s390/scsi/zfcp_qdio.h index 497cd379b0d1..85cdb82127e8 100644 --- a/drivers/s390/scsi/zfcp_qdio.h +++ b/drivers/s390/scsi/zfcp_qdio.h @@ -224,21 +224,6 @@ void zfcp_qdio_set_data_div(struct zfcp_qdio *qdio, sbale->length = count; } -/** - * zfcp_qdio_sbale_count - count sbale used - * @sg: pointer to struct scatterlist - */ -static inline -unsigned int zfcp_qdio_sbale_count(struct scatterlist *sg) -{ - unsigned int count = 0; - - for (; sg; sg = sg_next(sg)) - count++; - - return count; -} - /** * zfcp_qdio_real_bytes - count bytes used * @sg: pointer to struct scatterlist -- cgit v1.2.3