]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
crypto: ccp - Remove unused structure field
authorTom Lendacky <thomas.lendacky@amd.com>
Tue, 26 May 2015 18:06:30 +0000 (13:06 -0500)
committerSomasundaram Krishnasamy <somasundaram.krishnasamy@oracle.com>
Thu, 24 Aug 2017 17:52:38 +0000 (10:52 -0700)
Orabug: 26644685

Remove the length field from the ccp_sg_workarea since it is unused.

Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
(cherry picked from commit d725332208ef13241fc435eece790c9d0ea16a4e)
Signed-off-by: Somasundaram Krishnasamy <somasundaram.krishnasamy@oracle.com>
Reviewed-by: Jack Vogel <jack.vogel@oracle.com>
drivers/crypto/ccp/ccp-ops.c

index 71f2e3c8942416b719a53c84a1ae124d0d4363b9..542453c9ba1c87c2885090a3ec280b8df30ccb60 100644 (file)
@@ -53,7 +53,6 @@ struct ccp_dm_workarea {
 struct ccp_sg_workarea {
        struct scatterlist *sg;
        unsigned int nents;
-       unsigned int length;
 
        struct scatterlist *dma_sg;
        struct device *dma_dev;
@@ -497,7 +496,6 @@ static int ccp_init_sg_workarea(struct ccp_sg_workarea *wa, struct device *dev,
                return 0;
 
        wa->nents = sg_nents(sg);
-       wa->length = sg->length;
        wa->bytes_left = len;
        wa->sg_used = 0;