Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 82285f25 authored by Benoit Taine's avatar Benoit Taine Committed by Takashi Iwai
Browse files

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: default avatarBenoit Taine <benoit.taine@lip6.fr>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent a58bdba7
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -648,14 +648,14 @@ static int au1000_ac97_probe(struct platform_device *pdev)
		goto out;

	err = -EBUSY;
	au1000->ac97_res_port = request_mem_region(r->start,
					r->end - r->start + 1, pdev->name);
	au1000->ac97_res_port = request_mem_region(r->start, resource_size(r),
						   pdev->name);
	if (!au1000->ac97_res_port) {
		snd_printk(KERN_ERR "ALSA AC97: can't grab AC97 port\n");
		goto out;
	}

	io = ioremap(r->start, r->end - r->start + 1);
	io = ioremap(r->start, resource_size(r));
	if (!io)
		goto out;