patch-2.4.1 linux/arch/ppc/boot/vreset.c
Next file: linux/arch/ppc/chrpboot/Makefile
Previous file: linux/arch/ppc/boot/Makefile
Back to the patch index
Back to the overall index
-  Lines: 20
-  Date:
Mon Jan 22 15:41:14 2001
-  Orig file: 
v2.4.0/linux/arch/ppc/boot/vreset.c
-  Orig date: 
Thu May 21 14:24:05 1998
diff -u --recursive --new-file v2.4.0/linux/arch/ppc/boot/vreset.c linux/arch/ppc/boot/vreset.c
@@ -19,12 +19,16 @@
  */
 
 #include "iso_font.h"
-#include <linux/delay.h>
 
 extern char *vidmem;
 extern int lines, cols;
-/* estimate for delay */
-unsigned long loops_per_sec = 50000000;;
+
+static void mdelay(int ms)
+{
+	for (; ms > 0; --ms)
+		udelay(1000);
+}
+
 /*
  * VGA Register  
  */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)