Date: Tue, 22 Sep 2009 20:12:10 +0000 (UTC) From: Xin LI <delphij@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r197416 - head/sys/dev/atkbdc Message-ID: <200909222012.n8MKCAKe031034@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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...
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909222012.n8MKCAKe031034>