I accidently mixed up the parameter order of the ISA I/O calls, thanks

to Stefano for reporting this.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8980 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-09-16 10:39:14 +00:00
parent 9c6d4260cb
commit bfe052ed74
@@ -101,9 +101,9 @@ static void
set_leds(void)
{
wait_for_output();
gISA->write_io_8(0xed, 0x60);
gISA->write_io_8(0x60, 0xed);
wait_for_output();
gISA->write_io_8(leds, 0x60);
gISA->write_io_8(0x60, leds);
}