summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2010-06-08 19:15:37 +0200
committerIngo Molnar <mingo@elte.hu>2010-06-08 19:15:37 +0200
commit84bb671dc46d77d665d2b5e74539e81b2129bb3e (patch)
tree0917b00c767bfd52bd67897dcb53a4e200d65278
parentf6ab91add6355e231e1c47897027b2a6ee4fa268 (diff)
parent238c1a78c957f3dc7cb848b161dcf4805793ed56 (diff)
downloadlinux-84bb671dc46d77d665d2b5e74539e81b2129bb3e.tar.gz
linux-84bb671dc46d77d665d2b5e74539e81b2129bb3e.tar.bz2
linux-84bb671dc46d77d665d2b5e74539e81b2129bb3e.zip
Merge branch 'for-tip' of git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile into perf/urgent
-rw-r--r--arch/powerpc/oprofile/op_model_cell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/oprofile/op_model_cell.c b/arch/powerpc/oprofile/op_model_cell.c
index 2c9e52267292..7fd90d02d8c6 100644
--- a/arch/powerpc/oprofile/op_model_cell.c
+++ b/arch/powerpc/oprofile/op_model_cell.c
@@ -1077,7 +1077,7 @@ static int calculate_lfsr(int n)
index = ENTRIES-1;
/* make sure index is valid */
- if ((index > ENTRIES) || (index < 0))
+ if ((index >= ENTRIES) || (index < 0))
index = ENTRIES-1;
return initial_lfsr[index];