Author: jakllsch Date: Tue Feb 8 03:36:39 2011 New Revision: 6336 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6336
Log: Place the W83627EHG MIDI base address mask in the correct position. Corrects "index 98 has no mask" error at runtime.
Signed-off-by: Alexandru Gagniuc mr.nuke.me@gmail.com Acked-by: Jonathan Kollasch jakllsch@kollasch.net
Modified: trunk/src/superio/winbond/w83627ehg/superio.c
Modified: trunk/src/superio/winbond/w83627ehg/superio.c ============================================================================== --- trunk/src/superio/winbond/w83627ehg/superio.c Mon Feb 7 21:16:40 2011 (r6335) +++ trunk/src/superio/winbond/w83627ehg/superio.c Tue Feb 8 03:36:39 2011 (r6336) @@ -189,7 +189,7 @@ { &ops, W83627EHG_HWM, PNP_IO0 | PNP_IRQ0, {0x07fe, 0}, },
{ &ops, W83627EHG_GAME, PNP_IO0, {0x07ff, 0}, }, - { &ops, W83627EHG_MIDI, PNP_IO1 | PNP_IRQ0, {0x07fe, 4}, }, + { &ops, W83627EHG_MIDI, PNP_IO1 | PNP_IRQ0, {0, 0}, {0x07fe, 4}, }, { &ops, W83627EHG_GPIO1, }, { &ops, W83627EHG_GPIO2, }, { &ops, W83627EHG_GPIO3, },