Commit a9728c9a authored by Ossama Othman's avatar Ossama Othman Committed by Linus Torvalds

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: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 577ba406
...@@ -145,7 +145,7 @@ static void free_rar_device(struct rar_device *rar) ...@@ -145,7 +145,7 @@ static void free_rar_device(struct rar_device *rar)
*/ */
static struct rar_device *_rar_to_device(int rar, int *off) 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; *off = rar;
return &my_rar_device; return &my_rar_device;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment