summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorOssama Othman <ossama.othman@intel.com>2010-08-24 11:55:14 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2010-08-24 17:42:08 (GMT)
commita9728c9a31524ef927260096411ee85c8ee6b163 (patch)
tree429229aadf335c62a44b159fc5e721218ec4393f /drivers
parent577ba406e1cceac4776b095c83ee2896074a0327 (diff)
downloadlinux-fsl-qoriq-a9728c9a31524ef927260096411ee85c8ee6b163.tar.xz
rar: Fix off by one error
It looks like there is an off-by-one error in one of your changes to drivers/staging/rar_register/rar_register.c: Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/platform/x86/intel_rar_register.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel_rar_register.c b/drivers/platform/x86/intel_rar_register.c
index 73f8e6d..2b11a333 100644
--- a/drivers/platform/x86/intel_rar_register.c
+++ b/drivers/platform/x86/intel_rar_register.c
@@ -145,7 +145,7 @@ static void free_rar_device(struct rar_device *rar)
*/
static struct rar_device *_rar_to_device(int rar, int *off)
{
- if (rar >= 0 && rar <= 3) {
+ if (rar >= 0 && rar < MRST_NUM_RAR) {
*off = rar;
return &my_rar_device;
}