s390/delay: sync comment within __delay() with reality
authorHeiko Carstens <hca@linux.ibm.com>
Mon, 29 Aug 2022 12:17:28 +0000 (14:17 +0200)
committerVasily Gorbik <gor@linux.ibm.com>
Tue, 30 Aug 2022 20:00:33 +0000 (22:00 +0200)
The comment within __delay() is outdated and does not reflect anymore
what the function is doing. Therefore replace the comment.

Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
arch/s390/lib/delay.c

index f7f5ade..be14c58 100644 (file)
 
 void __delay(unsigned long loops)
 {
-        /*
-         * To end the bloody studid and useless discussion about the
-         * BogoMips number I took the liberty to define the __delay
-         * function in a way that that resulting BogoMips number will
-         * yield the megahertz number of the cpu. The important function
-         * is udelay and that is done using the tod clock. -- martin.
-         */
+       /*
+        * Loop 'loops' times. Callers must not assume a specific
+        * amount of time passes before this function returns.
+        */
        asm volatile("0: brct %0,0b" : : "d" ((loops/2) + 1));
 }
 EXPORT_SYMBOL(__delay);