aboutsummaryrefslogtreecommitdiff
path: root/arch/s390/kernel/ipl.c
diff options
context:
space:
mode:
authorGravatar Heiko Carstens <hca@linux.ibm.com> 2020-12-14 21:44:39 +0100
committerGravatar Heiko Carstens <hca@linux.ibm.com> 2020-12-16 14:55:49 +0100
commite0d62dcb20beac18a412ef9355208d9058c674d3 (patch)
treed94f602db4750b34b5710711ec6ba611cb0b8a71 /arch/s390/kernel/ipl.c
parents390/irq: select HAVE_IRQ_EXIT_ON_IRQ_STACK (diff)
downloadlinux-e0d62dcb20beac18a412ef9355208d9058c674d3.tar.gz
linux-e0d62dcb20beac18a412ef9355208d9058c674d3.tar.bz2
linux-e0d62dcb20beac18a412ef9355208d9058c674d3.zip
s390/delay: remove udelay_simple()
udelay_simple() callers can make use of the now simplified udelay() implementation. No need to keep it. Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'arch/s390/kernel/ipl.c')
-rw-r--r--arch/s390/kernel/ipl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/ipl.c b/arch/s390/kernel/ipl.c
index 98b3aca1de8e..7a21eca498aa 100644
--- a/arch/s390/kernel/ipl.c
+++ b/arch/s390/kernel/ipl.c
@@ -1512,7 +1512,7 @@ static void diag308_dump(void *dump_block)
while (1) {
if (diag308(DIAG308_LOAD_NORMAL_DUMP, NULL) != 0x302)
break;
- udelay_simple(USEC_PER_SEC);
+ udelay(USEC_PER_SEC);
}
}