mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
powerpc/selftest: fix type of mftb() in null_syscall
All callers of mftb() expect 'unsigned long', and the function itself only returns lower part of the TB so it really is 'unsigned long' not 'unsigned long long' Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
19f8a5b5be
commit
beb4f4722c
@ -25,7 +25,7 @@ unsigned long long clock_frequency;
|
||||
unsigned long long timebase_frequency;
|
||||
double timebase_multiplier;
|
||||
|
||||
static inline unsigned long long mftb(void)
|
||||
static inline unsigned long mftb(void)
|
||||
{
|
||||
unsigned long low;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user