aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2010-03-22 15:12:42 +0300
committerSamuel Ortiz <sameo@linux.intel.com>2010-05-28 01:37:30 +0200
commit5f7df57eeca93fc931b32e7723fe8f964aaa63df (patch)
tree06d59e19c18ba3374533ec1b1a7e1c2bfbb87930 /drivers/mfd
parentx86: remove rdc321x_defs.h (diff)
downloadlinux-dev-5f7df57eeca93fc931b32e7723fe8f964aaa63df.tar.xz
linux-dev-5f7df57eeca93fc931b32e7723fe8f964aaa63df.zip
mfd: Off by one calculating size for timberdale
I'm pretty sure that it should be + 1 here. It's an off by one, because we start counting at zero. Signed-off-by: Dan Carpenter <error27@gmail.com> Acked-by: Richard Röjfors <richard.rojfors@pelagicore.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/timberdale.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/timberdale.h b/drivers/mfd/timberdale.h
index 8d27ffabc25d..902c45120241 100644
--- a/drivers/mfd/timberdale.h
+++ b/drivers/mfd/timberdale.h
@@ -66,7 +66,7 @@
#define CHIPCTLOFFSET 0x800
#define CHIPCTLEND 0x8ff
-#define CHIPCTLSIZE (CHIPCTLEND - CHIPCTLOFFSET)
+#define CHIPCTLSIZE (CHIPCTLEND - CHIPCTLOFFSET + 1)
#define INTCOFFSET 0xc00
#define INTCEND 0xfff