diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2022-07-13 22:46:18 +0200 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2022-07-14 14:36:29 -0600 |
commit | 5be1fd963f7989090b16e3c471d0910502fb9bf8 (patch) | |
tree | 39719ed8af72b0088df1add0d8728185e2703d0c /tools | |
parent | 4d8f52ac5fa9eede7b7aa2f2d67c841d9eeb655f (diff) | |
download | linux-5be1fd963f7989090b16e3c471d0910502fb9bf8.tar.gz |
selftests: timers: clocksource-switch: sort includes
It is easier to check if you need to add an include if the existing ones
are sorted.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Acked-by: John Stultz <jstultz@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/timers/clocksource-switch.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/testing/selftests/timers/clocksource-switch.c b/tools/testing/selftests/timers/clocksource-switch.c index b57f0a9be490..ed5b71f5b37c 100644 --- a/tools/testing/selftests/timers/clocksource-switch.c +++ b/tools/testing/selftests/timers/clocksource-switch.c @@ -23,17 +23,17 @@ */ +#include <fcntl.h> #include <stdio.h> -#include <unistd.h> #include <stdlib.h> +#include <string.h> +#include <sys/stat.h> #include <sys/time.h> #include <sys/timex.h> -#include <time.h> #include <sys/types.h> -#include <sys/stat.h> -#include <fcntl.h> -#include <string.h> #include <sys/wait.h> +#include <time.h> +#include <unistd.h> #include "../kselftest.h" |