diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2010-05-14 00:58:05 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2010-05-14 00:58:05 -0400 |
commit | 5bdd5ded95b3188d58ba43ac801b8849cbea1b16 (patch) | |
tree | 43365aa1aead72399ab2f74730a2213a8ee150a4 /drivers/crypto | |
parent | edc774ed0c7d75e92b53105b386a5b0ce94d4525 (diff) |
crypto: mv_cesa - Use resource_size
Use the resource_size function instead of manually calculating the
resource size. This reduces the chance of introducing off-by-one errors.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/mv_cesa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/crypto/mv_cesa.c b/drivers/crypto/mv_cesa.c index 18a436cafc10..e095422b58dd 100644 --- a/drivers/crypto/mv_cesa.c +++ b/drivers/crypto/mv_cesa.c | |||
@@ -1023,7 +1023,7 @@ static int mv_probe(struct platform_device *pdev) | |||
1023 | 1023 | ||
1024 | spin_lock_init(&cp->lock); | 1024 | spin_lock_init(&cp->lock); |
1025 | crypto_init_queue(&cp->queue, 50); | 1025 | crypto_init_queue(&cp->queue, 50); |
1026 | cp->reg = ioremap(res->start, res->end - res->start + 1); | 1026 | cp->reg = ioremap(res->start, resource_size(res)); |
1027 | if (!cp->reg) { | 1027 | if (!cp->reg) { |
1028 | ret = -ENOMEM; | 1028 | ret = -ENOMEM; |
1029 | goto err; | 1029 | goto err; |
@@ -1034,7 +1034,7 @@ static int mv_probe(struct platform_device *pdev) | |||
1034 | ret = -ENXIO; | 1034 | ret = -ENXIO; |
1035 | goto err_unmap_reg; | 1035 | goto err_unmap_reg; |
1036 | } | 1036 | } |
1037 | cp->sram_size = res->end - res->start + 1; | 1037 | cp->sram_size = resource_size(res); |
1038 | cp->max_req_size = cp->sram_size - SRAM_CFG_SPACE; | 1038 | cp->max_req_size = cp->sram_size - SRAM_CFG_SPACE; |
1039 | cp->sram = ioremap(res->start, cp->sram_size); | 1039 | cp->sram = ioremap(res->start, cp->sram_size); |
1040 | if (!cp->sram) { | 1040 | if (!cp->sram) { |