svn commit: r197416 - head/sys/dev/atkbdc

Xin LI delphij at FreeBSD.org
Tue Sep 22 20:12:10 UTC 2009


Author: delphij
Date: Tue Sep 22 20:12:10 2009
New Revision: 197416
URL: http://svn.freebsd.org/changeset/base/197416

Log:
  Temporarily disable typematic retrieving code until we get a real fix,
  which currently causes hangs in some configurations.
  
  Reported by:	joel
  Submitted by:	swell.k at gmail.com

Modified:
  head/sys/dev/atkbdc/atkbd.c

Modified: head/sys/dev/atkbdc/atkbd.c
==============================================================================
--- head/sys/dev/atkbdc/atkbd.c	Tue Sep 22 18:34:23 2009	(r197415)
+++ head/sys/dev/atkbdc/atkbd.c	Tue Sep 22 20:12:10 2009	(r197416)
@@ -44,7 +44,7 @@ __FBSDID("$FreeBSD$");
 #include <machine/bus.h>
 #include <machine/resource.h>
 
-#if defined(__i386__) || defined(__amd64__)
+#if 0
 #include <machine/md_var.h>
 #include <machine/psl.h>
 #include <dev/x86bios/x86bios.h>
@@ -1089,7 +1089,7 @@ atkbd_shutdown_final(void *v)
 static int
 get_typematic(keyboard_t *kbd)
 {
-#if defined(__i386__) || defined(__amd64__)
+#if 0
 	/*
 	 * Only some systems allow us to retrieve the keyboard repeat 
 	 * rate previously set via the BIOS...


More information about the svn-src-head mailing list