Skip to content

Commit

Permalink
drivers: net: irda: use resource_size() in au1k_ir.c
Browse files Browse the repository at this point in the history
This uses the resource_size() function instead of explicit computation.

Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Silviu-Mihai Popescu authored and David S. Miller committed Mar 17, 2013
1 parent debd003 commit 94d8f2b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/net/irda/au1k_ir.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include <linux/slab.h>
#include <linux/time.h>
#include <linux/types.h>
#include <linux/ioport.h>

#include <net/irda/irda.h>
#include <net/irda/irmod.h>
Expand Down Expand Up @@ -882,12 +883,12 @@ static int au1k_irda_probe(struct platform_device *pdev)
goto out;

err = -EBUSY;
aup->ioarea = request_mem_region(r->start, r->end - r->start + 1,
aup->ioarea = request_mem_region(r->start, resource_size(r),
pdev->name);
if (!aup->ioarea)
goto out;

aup->iobase = ioremap_nocache(r->start, r->end - r->start + 1);
aup->iobase = ioremap_nocache(r->start, resource_size(r));
if (!aup->iobase)
goto out2;

Expand Down

0 comments on commit 94d8f2b

Please sign in to comment.