diff options
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2011-02-08 02:36:39 +0000 |
---|---|---|
committer | Jonathan A. Kollasch <jakllsch@kollasch.net> | 2011-02-08 02:36:39 +0000 |
commit | 4a038ca112f04312c233b6519c76572eaa1a57be (patch) | |
tree | 60199c8d34dfe6d90f719806f3f4a3f67bc13d3b /src | |
parent | b1d1c4d0840c74ebfa2ced0c56d492a075e4599f (diff) |
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>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6336 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/superio/winbond/w83627ehg/superio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/winbond/w83627ehg/superio.c b/src/superio/winbond/w83627ehg/superio.c index 1f1b681eaf..34ea3d46c6 100644 --- a/src/superio/winbond/w83627ehg/superio.c +++ b/src/superio/winbond/w83627ehg/superio.c @@ -189,7 +189,7 @@ static struct pnp_info pnp_dev_info[] = { { &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, }, |