aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenoit Taine <benoit.taine@lip6.fr>2014-05-28 11:14:06 -0400
committerTakashi Iwai <tiwai@suse.de>2014-05-28 11:50:57 -0400
commit82285f254ca8bacb0c089f87516b9db2bc13d580 (patch)
tree206d4c9ec3966705bec473ca130860dbd0fce1b2
parenta58bdba749b36069ec372da9c9fd16017b6c0b47 (diff)
ALSA: au1x00: Use resource_size instead of computation
This issue was reported by coccicheck using the semantic patch at scripts/coccinelle/api/resource_size.cocci Signed-off-by: Benoit Taine <benoit.taine@lip6.fr> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--sound/mips/au1x00.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/mips/au1x00.c b/sound/mips/au1x00.c
index d10ef7675268..fbcaa5434fd8 100644
--- a/sound/mips/au1x00.c
+++ b/sound/mips/au1x00.c
@@ -648,14 +648,14 @@ static int au1000_ac97_probe(struct platform_device *pdev)
648 goto out; 648 goto out;
649 649
650 err = -EBUSY; 650 err = -EBUSY;
651 au1000->ac97_res_port = request_mem_region(r->start, 651 au1000->ac97_res_port = request_mem_region(r->start, resource_size(r),
652 r->end - r->start + 1, pdev->name); 652 pdev->name);
653 if (!au1000->ac97_res_port) { 653 if (!au1000->ac97_res_port) {
654 snd_printk(KERN_ERR "ALSA AC97: can't grab AC97 port\n"); 654 snd_printk(KERN_ERR "ALSA AC97: can't grab AC97 port\n");
655 goto out; 655 goto out;
656 } 656 }
657 657
658 io = ioremap(r->start, r->end - r->start + 1); 658 io = ioremap(r->start, resource_size(r));
659 if (!io) 659 if (!io)
660 goto out; 660 goto out;
661 661