From e9d9842ae869d56b867fbc7f2dc541918b596296 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 18 Oct 2007 17:27:39 +0000 Subject: [PATCH] Found and fixed the reboot problem of most of my systems: by binary searching through our revisions, I found r20883 to be the cause of this problem. This one obviously fixed bug #1185, but I'm afraid there has to be another solution for this problem. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22617 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/bus_managers/ps2/ps2_common.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/add-ons/kernel/bus_managers/ps2/ps2_common.c b/src/add-ons/kernel/bus_managers/ps2/ps2_common.c index 6c80aa4d19..49c5677639 100644 --- a/src/add-ons/kernel/bus_managers/ps2/ps2_common.c +++ b/src/add-ons/kernel/bus_managers/ps2/ps2_common.c @@ -350,7 +350,10 @@ ps2_init(void) if (status) goto err4; - ps2_selftest(); + // While this might have fixed bug #1185, we can't do this unconditionally + // as it obviously messes up many controllers which couldn't reboot anymore + // after that + //ps2_selftest(); status = ps2_setup_command_byte(); if (status) {