From: Dan Carpenter Date: Thu, 11 Nov 2010 22:05:07 +0000 (-0800) Subject: rapidio: use resource_size() X-Git-Tag: v2.6.37-rc2~68 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88cf81fc8944a6892db104caaa490885d48b959c;p=pandora-kernel.git rapidio: use resource_size() The size calculation is done incorrectly here because it should include both the start and end (end - start + 1). It's easiest to just use resource_size() which does the right thing. I was worried there was something non-standard going on because the printk() subtracts "end - 1", but the rest of the file uses the normal resource size calculations. This function is only called from fsl_rio_setup() in arch/powerpc/sysdev/fsl_rio.c and the calculation there is also: port->iores.start = law_start; port->iores.end = law_start + law_size - 1; So I think this is the correct fix. Signed-off-by: Dan Carpenter Cc: Alexandre Bounine Acked-by: Li Yang Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed