aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2005-09-19 08:30:11 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2005-10-29 20:19:43 -0400
commit6df5b9f48dd0e77fa796b9b7d3fde7cc5f1237f2 (patch)
treeb13c0941fcbde9a95fece66d02bb0b558cf98041 /crypto
parent378f058cc49bcda7fa63d3cd86d2f9a0a5188b1c (diff)
[CRYPTO] Simplify one-member scatterlist expressions
This patch rewrites various occurences of &sg[0] where sg is an array of length one to simply sg. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/tcrypt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index 577a3aff3113..53f4ee804bdb 100644
--- a/crypto/tcrypt.c
+++ b/crypto/tcrypt.c
@@ -415,12 +415,12 @@ out:
415static int test_cipher_jiffies(struct crypto_tfm *tfm, int enc, char *p, 415static int test_cipher_jiffies(struct crypto_tfm *tfm, int enc, char *p,
416 int blen, int sec) 416 int blen, int sec)
417{ 417{
418 struct scatterlist sg[8]; 418 struct scatterlist sg[1];
419 unsigned long start, end; 419 unsigned long start, end;
420 int bcount; 420 int bcount;
421 int ret; 421 int ret;
422 422
423 sg_set_buf(&sg[0], p, blen); 423 sg_set_buf(sg, p, blen);
424 424
425 for (start = jiffies, end = start + sec * HZ, bcount = 0; 425 for (start = jiffies, end = start + sec * HZ, bcount = 0;
426 time_before(jiffies, end); bcount++) { 426 time_before(jiffies, end); bcount++) {
@@ -441,12 +441,12 @@ static int test_cipher_jiffies(struct crypto_tfm *tfm, int enc, char *p,
441static int test_cipher_cycles(struct crypto_tfm *tfm, int enc, char *p, 441static int test_cipher_cycles(struct crypto_tfm *tfm, int enc, char *p,
442 int blen) 442 int blen)
443{ 443{
444 struct scatterlist sg[8]; 444 struct scatterlist sg[1];
445 unsigned long cycles = 0; 445 unsigned long cycles = 0;
446 int ret = 0; 446 int ret = 0;
447 int i; 447 int i;
448 448
449 sg_set_buf(&sg[0], p, blen); 449 sg_set_buf(sg, p, blen);
450 450
451 local_bh_disable(); 451 local_bh_disable();
452 local_irq_disable(); 452 local_irq_disable();