From: Samuel Thibault Fix the "apm: set display: Interface not engaged" error on Armada laptops again. Jordan said: I think this is fine. It seems to me that this may be the fault of one or both of the APM solutions handling this situation in a non-standard way, but since APM is used very little on the Geode, and I have direct access to our BIOS folks, if this problem comes up with a customer again, we'll solve it from the firmware. Signed-off-by: Samuel Thibault Cc: "Jordan Crouse" Cc: Zachary Amsden Signed-off-by: Andrew Morton --- arch/i386/kernel/apm.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/apm.c~apm-fix-armada-laptops-again arch/i386/kernel/apm.c --- 25/arch/i386/kernel/apm.c~apm-fix-armada-laptops-again Wed Apr 12 14:36:03 2006 +++ 25-akpm/arch/i386/kernel/apm.c Wed Apr 12 14:36:03 2006 @@ -1079,7 +1079,7 @@ static int apm_console_blank(int blank) break; } - if (error == APM_NOT_ENGAGED && state != APM_STATE_READY) { + if (error == APM_NOT_ENGAGED) { static int tried; int eng_error; if (tried++ == 0) { _