Skip to content

Commit

Permalink
mfd: Use resource_size() for t7l66xb
Browse files Browse the repository at this point in the history
Use resource_size() for ioremap.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Molton <ian@mnementh.co.uk>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
H Hartley Sweeten authored and Samuel Ortiz committed Mar 7, 2010
1 parent 311e54c commit c02e6a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mfd/t7l66xb.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ static int t7l66xb_probe(struct platform_device *dev)
if (ret)
goto err_request_scr;

t7l66xb->scr = ioremap(rscr->start, rscr->end - rscr->start + 1);
t7l66xb->scr = ioremap(rscr->start, resource_size(rscr));
if (!t7l66xb->scr) {
ret = -ENOMEM;
goto err_ioremap;
Expand Down

0 comments on commit c02e6a5

Please sign in to comment.