.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Test null syscall performance |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2009-2015 Anton Blanchard, IBM |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or |
---|
7 | | - * modify it under the terms of the GNU General Public License |
---|
8 | | - * as published by the Free Software Foundation; either version |
---|
9 | | - * 2 of the License, or (at your option) any later version. |
---|
10 | 6 | */ |
---|
11 | 7 | |
---|
12 | 8 | #define NR_LOOPS 10000000 |
---|
.. | .. |
---|
25 | 21 | unsigned long long timebase_frequency; |
---|
26 | 22 | double timebase_multiplier; |
---|
27 | 23 | |
---|
28 | | -static inline unsigned long long mftb(void) |
---|
| 24 | +static inline unsigned long mftb(void) |
---|
29 | 25 | { |
---|
30 | 26 | unsigned long low; |
---|
31 | 27 | |
---|