diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2012-07-27 04:31:12 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2012-07-30 05:03:12 -0400 |
commit | 7d25617597ff8dcfe4d0e1d0ac9214e7cc7ded92 (patch) | |
tree | 5195733687b3194e053be0687137f6f6b05472e0 /arch/s390/oprofile | |
parent | 37fe1d73a449bdebc4908d04e518f5852d6c453b (diff) |
s390: make use of user_mode() macro where possible
We use the user_mode() helper already at several places but also
have the open coded variant at other places.
Convert the code to always use the helper function.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/oprofile')
-rw-r--r-- | arch/s390/oprofile/backtrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/oprofile/backtrace.c b/arch/s390/oprofile/backtrace.c index c82f62fb9c28..8a6811b2cdb9 100644 --- a/arch/s390/oprofile/backtrace.c +++ b/arch/s390/oprofile/backtrace.c | |||
@@ -58,7 +58,7 @@ void s390_backtrace(struct pt_regs * const regs, unsigned int depth) | |||
58 | unsigned long head; | 58 | unsigned long head; |
59 | struct stack_frame* head_sf; | 59 | struct stack_frame* head_sf; |
60 | 60 | ||
61 | if (user_mode (regs)) | 61 | if (user_mode(regs)) |
62 | return; | 62 | return; |
63 | 63 | ||
64 | head = regs->gprs[15]; | 64 | head = regs->gprs[15]; |