[PARISC] Fix bug when syscall nr is __NR_Linux_syscalls

The bug was that we were comparing __NR_syscalls to be greater or equal
to the syscall number stored in %r20. __NR_syscalls is one greater than
the last syscall though, so we're loading one entry beyond the end of the
syscall table, and trying to jump to it.

Fix this by only checking that we're greater, alternatively, we could
have compared to (__NR_Linux_syscalls - 1)

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

authored by Kyle McMartin and committed by Kyle McMartin 3bb457af cc650a7a

+1 -1
+1 -1
arch/parisc/kernel/syscall.S
··· 198 198 ldil L%sys_call_table, %r1 199 199 ldo R%sys_call_table(%r1), %r19 200 200 #endif 201 - comiclr,>>= __NR_Linux_syscalls, %r20, %r0 201 + comiclr,>> __NR_Linux_syscalls, %r20, %r0 202 202 b,n .Lsyscall_nosys 203 203 204 204 LDREGX %r20(%r19), %r19