diff options
author | Heiko Carstens | 2021-07-25 15:13:12 +0200 |
---|---|---|
committer | Heiko Carstens | 2021-07-27 09:39:22 +0200 |
commit | 3da77cf33cf8caf60d5cf29987885abb997a38fa (patch) | |
tree | a83109dd89ee614d059c603554e18316851015d2 | |
parent | 6ab023641a34b18751310bbbeedb0e60aca2e4b2 (diff) |
s390/delay: get rid of not needed header includes
After all the changes to delay.c there are many includes which are not
needed anymore. Get rid of them.
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
-rw-r--r-- | arch/s390/lib/delay.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/arch/s390/lib/delay.c b/arch/s390/lib/delay.c index f289afeb3f31..bccbf394ae7e 100644 --- a/arch/s390/lib/delay.c +++ b/arch/s390/lib/delay.c @@ -7,17 +7,10 @@ * Heiko Carstens <heiko.carstens@de.ibm.com>, */ -#include <linux/sched.h> +#include <linux/processor.h> #include <linux/delay.h> -#include <linux/timex.h> -#include <linux/export.h> -#include <linux/irqflags.h> -#include <linux/interrupt.h> -#include <linux/jump_label.h> -#include <linux/irq.h> -#include <asm/vtimer.h> #include <asm/div64.h> -#include <asm/idle.h> +#include <asm/timex.h> void __delay(unsigned long loops) { |