From patchwork Sat Feb 5 19:54:49 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Fix issue with Winbond W83627EHG MIDI driver Date: Sat, 05 Feb 2011 19:54:49 -0000 From: Alexandru Gagniuc X-Patchwork-Id: 2614 Message-Id: <4D4DAB09.3080606@gmail.com> To: "coreboot@coreboot.org" Sorry about forgetting to attach the patch. Alex On 02/05/2011 09:50 PM, Alex G. wrote: > (See Patch) > > This fixes the > "ERROR: device PNP: 002e.207 index 98 has no mask." > that I have been getting on the W83627EHG. > > Alex > > Fixes a problem with the W8327EHG driver, where the midi device could get initialised with no mask. Signed-off-by: Alexandru Gagniuc Index: src/superio/winbond/w83627ehg/superio.c =================================================================== --- src/superio/winbond/w83627ehg/superio.c (revision 6323) +++ src/superio/winbond/w83627ehg/superio.c (working copy) @@ -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_IO0 | PNP_IRQ0, {0x07fe, 4}, }, { &ops, W83627EHG_GPIO1, }, { &ops, W83627EHG_GPIO2, }, { &ops, W83627EHG_GPIO3, },